summaryrefslogtreecommitdiff
path: root/src/maths/maths.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-27 23:07:16 +1100
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-27 23:07:16 +1100
commitfe83372519e3ae8dd88ecfb4c67d484a1a5f13af (patch)
tree7c60d8840d457a95a0f01e9e2f0c55971948ce5f /src/maths/maths.h
parentff907c6ffa7ed0a7c6ce938b40a6c223dd0a3b9d (diff)
brainsforming refined layout for renderer
Diffstat (limited to 'src/maths/maths.h')
-rw-r--r--src/maths/maths.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/maths/maths.h b/src/maths/maths.h
index 6816415..db63072 100644
--- a/src/maths/maths.h
+++ b/src/maths/maths.h
@@ -236,3 +236,9 @@ typedef struct u32x3 {
};
} u32x3;
#define u32x3(x, y, z) ((u32x3){ x, y, z })
+
+typedef struct u32x2 {
+ u32 x;
+ u32 y;
+} u32x2;
+#define u32x2(x, y) ((u32x3){ x, y }) \ No newline at end of file