diff options
author | kitty piapiac <kcp@bsd.computer> | 2023-04-17 23:46:30 -0700 |
---|---|---|
committer | kitty piapiac <kcp@bsd.computer> | 2023-04-17 23:46:30 -0700 |
commit | 5393ce93d05f9979b7882c686b241f6738011c64 (patch) | |
tree | b68d664d2c5c47490c0dbba8ef72a4974e516210 /include/graph.h | |
parent | f92b613698b5c4066068bb937b5993b1c5a3bd24 (diff) |
mat4 transformations
Diffstat (limited to 'include/graph.h')
-rw-r--r-- | include/graph.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/graph.h b/include/graph.h index 61951f5..8e09bac 100644 --- a/include/graph.h +++ b/include/graph.h @@ -7,10 +7,12 @@ X V graph_events(V); X V graph_before(V); X V graph_after(V); X V graph_quad(V); +X U32 graph_ticks(V); X U32 graph_shader_create(IM C*,IM C*); X U32 graph_shader_tex; X V graph_shader_use(U32); -X V graph_shader_seti(IM C*,I); +X V graph_shader_setI(IM C*,I); +X V graph_shader_setM4(IM C*,mat4); X U32 graph_tex_create(IM C*); X V graph_tex_use(U32,U8); |