diff options
Diffstat (limited to 'progs/tests/vptest2.c')
-rw-r--r-- | progs/tests/vptest2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/tests/vptest2.c b/progs/tests/vptest2.c index 4161b03a673..89cd6b1458c 100644 --- a/progs/tests/vptest2.c +++ b/progs/tests/vptest2.c @@ -144,6 +144,12 @@ int main( int argc, char *argv[] ) glutReshapeFunc( Reshape ); glutKeyboardFunc( Key ); glutDisplayFunc( Display ); + + if (!glutExtensionSupported("GL_NV_vertex_program")) { + printf("Sorry, this program requires GL_NV_vertex_program\n"); + exit(1); + } + Test1(); Test2(); Test3(); |