X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=blobdiff_plain;f=src%2F3dgfx.h;h=4a3cde58d3a8a980dac16af36c7adff247785941;hp=c80ded1b595824f5406330df01217fa0122bd33c;hb=0945eeeef21fe85f9a592bfc2e41069a7894b08b;hpb=9bdd6ddccd850f8a7dd2942c0b7088b77f41af0e diff --git a/src/3dgfx.h b/src/3dgfx.h index c80ded1..4a3cde5 100644 --- a/src/3dgfx.h +++ b/src/3dgfx.h @@ -30,6 +30,12 @@ enum { /* arg to g3d_front_face */ enum { G3D_CCW, G3D_CW }; +/* arg to g3d_polygon_mode */ +enum { + G3D_WIRE, + G3D_FLAT +}; + /* matrix stacks */ enum { G3D_MODELVIEW, @@ -49,6 +55,7 @@ void g3d_setopt(unsigned int opt, unsigned int mask); unsigned int g3d_getopt(unsigned int mask); void g3d_front_face(unsigned int order); +void g3d_polygon_mode(int pmode); void g3d_matrix_mode(int mmode);