diff options
author | rodri <rgl@antares-labs.eu> | 2024-10-01 20:21:13 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2024-10-01 20:21:13 +0000 |
commit | b6a336aff26fbc94e7803719a8aeb8fa29eddb9b (patch) | |
tree | ee3049837fc0edf7e3d2133aa711457bbf9b8859 /internal.h | |
parent | 453d100ac7734cd64652aa4d3a0685e3494428f7 (diff) | |
download | libgraphics-b6a336aff26fbc94e7803719a8aeb8fa29eddb9b.tar.gz libgraphics-b6a336aff26fbc94e7803719a8aeb8fa29eddb9b.tar.bz2 libgraphics-b6a336aff26fbc94e7803719a8aeb8fa29eddb9b.zip |
implement a uniforms interface through Shadertab.
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -73,6 +73,8 @@ void lerpvertex(Vertex*, Vertex*, Vertex*, double); void berpvertex(Vertex*, Vertex*, Vertex*, Vertex*, Point3); void delvattrs(Vertex*); void fprintvattrs(int, Vertex*); +void addvattr(Vertexattrs*, char*, int, void*); +Vertexattr *getvattr(Vertexattrs*, char*); /* clip */ int clipprimitive(Primitive*, Primitive*); |