diff options
Diffstat (limited to 'src/rendering.h')
| -rw-r--r-- | src/rendering.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/rendering.h b/src/rendering.h new file mode 100644 index 0000000..b7d4a2a --- /dev/null +++ b/src/rendering.h @@ -0,0 +1,16 @@ +#pragma once + +#include <cglm/cglm.h> + +#include "cglm/types.h" +#include "utils.h" + +struct uv_s { + vec2 uv0; + vec2 uv1; +}; + +typedef u32 atlas_t; + +bool atlas_init(atlas_t* atlas, u32 width, u32 height); +void atlas_deinit(atlas_t* atlas); |
