Fix a few cases where surface format is still 32 bits
This commit is contained in:
@ -63,7 +63,7 @@ class ImmediateMesh : public Mesh {
|
|||||||
Ref<Material> material;
|
Ref<Material> material;
|
||||||
bool vertex_2d = false;
|
bool vertex_2d = false;
|
||||||
int array_len = 0;
|
int array_len = 0;
|
||||||
uint32_t format = 0;
|
uint64_t format = 0;
|
||||||
AABB aabb;
|
AABB aabb;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -301,7 +301,7 @@ class ArrayMesh : public Mesh {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
struct Surface {
|
struct Surface {
|
||||||
uint32_t format = 0;
|
uint64_t format = 0;
|
||||||
int array_length = 0;
|
int array_length = 0;
|
||||||
int index_array_length = 0;
|
int index_array_length = 0;
|
||||||
PrimitiveType primitive = PrimitiveType::PRIMITIVE_MAX;
|
PrimitiveType primitive = PrimitiveType::PRIMITIVE_MAX;
|
||||||
|
|||||||
Reference in New Issue
Block a user