clear value

This commit is contained in:
Greg Wells
2025-06-06 20:23:50 -04:00
parent 5395e326cb
commit 2483e32a9a

View File

@@ -29,3 +29,15 @@ typedef struct gnColor {
} }
#endif #endif
} gnColor; } gnColor;
typedef struct gnClearValue {
union {
struct {
float r, g, b, a;
};
struct {
float red, green, blue, alpha;
};
};
} gnClearValue;