first commit

This commit is contained in:
2025-06-15 22:03:02 -04:00
commit 91d01a1441
25 changed files with 24689 additions and 0 deletions

13
src/texture.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include "COMMON.h"
struct Texture
{
GLuint handle = 0;
ivec2 size = {0, 0};
s32 channels = -1;
};
bool texture_init(Texture* self, const char* path);
void texture_free(Texture* self);