types-struct: fix mat4x2s struct members

union mat4x2s { struct {  } } contains
members with incorrect naming.

Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
Vincent Davis Jr
2023-07-17 23:09:40 -04:00
parent 4bb7e778c4
commit e9df003e56

View File

@@ -275,8 +275,8 @@ typedef union mat4x2s {
struct { struct {
float m00, m01; float m00, m01;
float m10, m11; float m10, m11;
float m21, m22; float m20, m21;
float m31, m32; float m30, m31;
}; };
#endif #endif
} mat4x2s; } mat4x2s;