progs/tests: compile with SCons and glew
[mesa.git] / progs / tests / arbfpspec.c
index 73c55369ec82cbb2135c56449334864119422dc0..550e9543406c0f74cd9be962981ae5c9248b6f96 100644 (file)
@@ -8,7 +8,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <math.h>
-#define GL_GLEXT_PROTOTYPES
+#include <GL/glew.h>
 #include <GL/glut.h>
 
 static float Xrot = 0.0, Yrot = 0.0, Zrot = 0.0;
@@ -118,10 +118,10 @@ static void Init( void )
       "MOV   result.color.front.secondary, {1, 1, 1, 1};\n"
       "END";
 
-       static const char fprog[] = 
-     "!!ARBfp1.0\n"                      
-     "MOV result.color, fragment.color.secondary;\n"
-         "END";
+    static const char fprog[] = 
+      "!!ARBfp1.0\n"                     
+      "MOV result.color, fragment.color.secondary;\n"
+      "END";
 
    if (!glutExtensionSupported("GL_ARB_vertex_program")) {
       printf("Sorry, this program requires GL_ARB_vertex_program");
@@ -132,8 +132,6 @@ static void Init( void )
       printf("Sorry, this program requires GL_ARB_fragment_program");
       exit(1);
    }
-
-
        
    glGenProgramsARB(1, &prognum);
    glGenProgramsARB(1, &fprognum);
@@ -182,6 +180,7 @@ int main( int argc, char *argv[] )
    glutInitWindowSize( 250, 250 );
    glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH );
    glutCreateWindow(argv[0]);
+   glewInit();
    glutReshapeFunc( Reshape );
    glutKeyboardFunc( Key );
    glutSpecialFunc( SpecialKey );