mirror of
https://github.com/recp/cglm.git
synced 2025-10-03 16:51:35 +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 {
|
||||
float m00, m01;
|
||||
float m10, m11;
|
||||
float m21, m22;
|
||||
float m31, m32;
|
||||
float m20, m21;
|
||||
float m30, m31;
|
||||
};
|
||||
#endif
|
||||
} mat4x2s;
|
||||
|
Reference in New Issue
Block a user