Update MAX_MORPH_TARGETS to 256

This commit is contained in:
daemyung jang
2022-03-19 00:01:39 +09:00
committed by Philip Rideout
parent 37aafdd912
commit d8ea26e305

View File

@@ -151,7 +151,7 @@ enum VertexAttribute : uint8_t {
};
static constexpr size_t MAX_LEGACY_MORPH_TARGETS = 4;
static constexpr size_t MAX_MORPH_TARGETS = 128; // this is limited by filament::CONFIG_MAX_MORPH_TARGET_COUNT
static constexpr size_t MAX_MORPH_TARGETS = 256; // this is limited by filament::CONFIG_MAX_MORPH_TARGET_COUNT
static constexpr size_t MAX_CUSTOM_ATTRIBUTES = 8;
/**