X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2F3dgfx.h;h=94884ca23ab3d7cfac136c68e903130c71b0635b;hb=e7220b01f07d1df5a45fe7c83608d4157881956a;hp=8d05b8a6c99b70e80780b41d69785d00d124dd54;hpb=9b942b99fe10222bee50c47bfc809de268d331ec;p=dosdemo diff --git a/src/3dgfx.h b/src/3dgfx.h index 8d05b8a..94884ca 100644 --- a/src/3dgfx.h +++ b/src/3dgfx.h @@ -98,4 +98,14 @@ void g3d_draw(int prim, const struct g3d_vertex *varr, int varr_size); void g3d_draw_indexed(int prim, const struct g3d_vertex *varr, int varr_size, const int16_t *iarr, int iarr_size); +void g3d_begin(int prim); +void g3d_end(void); +void g3d_vertex(float x, float y, float z); +void g3d_normal(float x, float y, float z); +void g3d_color3b(unsigned char r, unsigned char g, unsigned char b); +void g3d_color4b(unsigned char r, unsigned char g, unsigned char b, unsigned char a); +void g3d_color3f(float r, float g, float b); +void g3d_color4f(float r, float g, float b, float a); +void g3d_texcoord(float u, float v); + #endif /* THREEDGFX_H_ */