diff options
author | kitty piapiac <kcp@bsd.computer> | 2023-04-17 14:12:51 -0700 |
---|---|---|
committer | kitty piapiac <kcp@bsd.computer> | 2023-04-17 14:12:51 -0700 |
commit | 28e849b3c5d683a5cdb56047189b4d73e523bbf4 (patch) | |
tree | 37168540deb94234749e3b1e4ffec868ea0b72b6 /include/tex.h | |
parent | 8ad89fb13af5ffaec52e196f1874d18ec129031c (diff) |
texture loading
tex.c -- load textures
graph.c -- graph_shader_tex && graph_tex_create()
Diffstat (limited to 'include/tex.h')
-rw-r--r-- | include/tex.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/tex.h b/include/tex.h new file mode 100644 index 0000000..8b5b3ff --- /dev/null +++ b/include/tex.h @@ -0,0 +1,6 @@ +#ifndef MINO_TEX_H +#define MINO_TEX_H +typedef struct{U32 w,h;U8*d;}Tex; +X Tex tex_load(IM C*); +X V tex_free(Tex); +#endif |