One unit compil has similar struct but the signess differ.

This commit is contained in:
David Carlier
2018-07-28 18:05:42 +01:00
parent e48196dcbe
commit 3dacda7522
+1 -1
View File
@@ -10,7 +10,7 @@
namespace render {
struct VertexIndex {
int a, b, c;
unsigned int a, b, c;
VertexIndex(int A, int B, int C) : a(A), b(B), c(C) {}