mirror of
https://github.com/recp/cglm.git
synced 2025-10-04 09:08:53 +00:00
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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user