From 2483e32a9a1c6987c6c7efd01f730918e4ce1817 Mon Sep 17 00:00:00 2001 From: Greg Wells Date: Fri, 6 Jun 2025 20:23:50 -0400 Subject: [PATCH] clear value --- utils/gryphn_color.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/utils/gryphn_color.h b/utils/gryphn_color.h index 29502a7..935107c 100644 --- a/utils/gryphn_color.h +++ b/utils/gryphn_color.h @@ -29,3 +29,15 @@ typedef struct gnColor { } #endif } gnColor; + +typedef struct gnClearValue { + union { + struct { + float r, g, b, a; + }; + + struct { + float red, green, blue, alpha; + }; + }; +} gnClearValue;