Fix a crash on Windows. Resolves #1570.

This commit is contained in:
Alex Szpakowski
2020-05-23 15:19:28 -03:00
parent 720d2890eb
commit 0fae32706d
+2 -2
View File
@@ -223,9 +223,9 @@ struct BufferBindings
struct AttributeInfo
{
DataType type;
uint8 components;
uint8 bufferIndex;
DataType type : 4;
uint8 components : 4;
uint16 offsetFromVertex;
};