refactor(profile): profiles are now stored in profile/ subdirectory

This commit is contained in:
phaneron 2024-09-08 21:04:31 -04:00
parent 1e1f435c5c
commit c2b96d98b6
100 changed files with 58650 additions and 10 deletions

View file

@ -0,0 +1,22 @@
#ifndef GX_MATRIX_STACK_H
#define GX_MATRIX_STACK_H
#include "system/types.h"
#include "tempest/matrix.h"
typedef enum CGxMatrixStack__EMatrixFlags CGxMatrixStack__EMatrixFlags;
typedef struct CGxMatrixStack CGxMatrixStack;
enum CGxMatrixStack__EMatrixFlags {
F_Identity = 0x1
};
struct CGxMatrixStack {
uint32_t m_level;
int8_t m_dirty;
C44Matrix m_mtx[4];
uint32_t m_flags[4];
};
#endif