X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fgl-info.c;h=7d56fe81158d60ceab5a03c305f579bc45581275;hb=6ba395969c6cd76f8383f71a61b9739271fa64e7;hp=8df65f1603ba8dba780d86ab4006dc108a50f65e;hpb=c90db01dc8d5462a3da22771ffa7c96f5ea31217;p=flightgear.git diff --git a/tests/gl-info.c b/tests/gl-info.c index 8df65f160..7d56fe811 100644 --- a/tests/gl-info.c +++ b/tests/gl-info.c @@ -17,7 +17,16 @@ Date: Fri, 24 Apr 1998 07:33:51 -0800 #include #include -#include + +#include +#if defined( __APPLE__) +# include +# include +#else +# include +# include +#endif + void getPrints ( GLenum token, char *string ) { @@ -100,6 +109,8 @@ int main ( int argc, char **argv ) getPrinti( GL_UNPACK_ROW_LENGTH , "GL_UNPACK_ROW_LENGTH" ) ; getPrinti( GL_UNPACK_SKIP_PIXELS , "GL_UNPACK_SKIP_PIXELS" ) ; getPrinti( GL_UNPACK_SKIP_ROWS , "GL_UNPACK_SKIP_ROWS" ) ; + getPrinti( GL_BLEND_SRC , "GL_BLEND_SRC" ) ; + getPrinti( GL_BLEND_DST , "GL_BLEND_DST" ) ; return 0 ; }