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/graph.h | |
parent | 8ad89fb13af5ffaec52e196f1874d18ec129031c (diff) |
texture loading
tex.c -- load textures
graph.c -- graph_shader_tex && graph_tex_create()
Diffstat (limited to 'include/graph.h')
-rw-r--r-- | include/graph.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/graph.h b/include/graph.h index 9780714..d3bbbcf 100644 --- a/include/graph.h +++ b/include/graph.h @@ -5,6 +5,9 @@ X V graph_deinit(V); X V graph_events(V); X V graph_before(V); X V graph_after(V); -X V graph_quad(V); +X V graph_quad(U32); X U32 graph_shader_create(IM C*,IM C*); +X U32 graph_shader_tex; + +X U32 graph_tex_create(IM C*); #endif |