add some stuff to utils

This commit is contained in:
Greg Wells
2025-07-02 16:12:06 -04:00
parent b2a96ba8e1
commit 8b31d2e936
2 changed files with 6 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ typedef struct gnUInt3 {
union {
struct { uint32_t a, b, c; };
struct { uint32_t x, y, z; };
struct { uint32_t width, height, depth; };
};
#ifdef GN_UTILS_CPP
@@ -66,6 +67,9 @@ typedef struct gnUInt3 {
#endif
} gnUInt3;
typedef gnUInt3 gnUVec3;
typedef gnUInt3 gnExtent3D;
typedef struct gnInt3 {
union {
struct { int a, b, c; };