X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2F3dgfx.h;h=4a3cde58d3a8a980dac16af36c7adff247785941;hb=d00f30ccdcfe52d50a08b15748734b3503fae734;hp=c80ded1b595824f5406330df01217fa0122bd33c;hpb=5d9ec41cc62ebddf5d406511714e561e88884987;p=dosdemo 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);