diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-27 23:07:16 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-27 23:07:16 +1100 |
commit | fe83372519e3ae8dd88ecfb4c67d484a1a5f13af (patch) | |
tree | 7c60d8840d457a95a0f01e9e2f0c55971948ce5f /src/maths/maths.h | |
parent | ff907c6ffa7ed0a7c6ce938b40a6c223dd0a3b9d (diff) |
brainsforming refined layout for renderer
Diffstat (limited to 'src/maths/maths.h')
-rw-r--r-- | src/maths/maths.h | 6 |
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 |