mesa: remove the unused _mesa_UpdateTexEnvProgram() function
[mesa.git] / progs / fp / tri-max.c
1
2 #include <stdio.h>
3 #include <string.h>
4 #include <stdlib.h>
5 #define GL_GLEXT_PROTOTYPES
6 #include <GL/glut.h>
7 #include "GL/gl.h"
8
9
10
11 static void Init( void )
12 {
13 static const char *modulate2D =
14 "!!ARBfp1.0\n"
15 "MAX result.color, {0.5}.x, fragment.color; \n"
16 "END"
17 ;
18 GLuint modulateProg;
19
20 if (!glutExtensionSupported("GL_ARB_fragment_program")) {
21 printf("Error: GL_ARB_fragment_program not supported!\n");
22 exit(1);
23 }
24 printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
25
26 /* Setup the fragment program */
27 glGenProgramsARB(1, &modulateProg);
28 glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, modulateProg);
29 glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB,
30 strlen(modulate2D), (const GLubyte *)modulate2D);
31
32 printf("glGetError = 0x%x\n", (int) glGetError());
33 printf("glError(GL_PROGRAM_ERROR_STRING_ARB) = %s\n",
34 (char *) glGetString(GL_PROGRAM_ERROR_STRING_ARB));
35
36 glEnable(GL_FRAGMENT_PROGRAM_ARB);
37
38 glClearColor(.3, .3, .3, 0);
39 }
40
41 static void Reshape(int width, int height)
42 {
43
44 glViewport(0, 0, (GLint)width, (GLint)height);
45
46 glMatrixMode(GL_PROJECTION);
47 glLoadIdentity();
48 glOrtho(-1.0, 1.0, -1.0, 1.0, -0.5, 1000.0);
49 glMatrixMode(GL_MODELVIEW);
50 }
51
52 static void Key(unsigned char key, int x, int y)
53 {
54
55 switch (key) {
56 case 27:
57 exit(1);
58 default:
59 return;
60 }
61
62 glutPostRedisplay();
63 }
64
65 static void Draw(void)
66 {
67 glClear(GL_COLOR_BUFFER_BIT);
68
69 glBegin(GL_TRIANGLES);
70 glColor3f(0,0,1);
71 glVertex3f( 0.9, -0.9, -30.0);
72 glColor3f(1,0,0);
73 glVertex3f( 0.9, 0.9, -30.0);
74 glColor3f(0,1,0);
75 glVertex3f(-0.9, 0.0, -30.0);
76 glEnd();
77
78 glFlush();
79
80
81 }
82
83
84 int main(int argc, char **argv)
85 {
86 GLenum type;
87
88 glutInit(&argc, argv);
89
90
91
92 glutInitWindowPosition(0, 0); glutInitWindowSize( 250, 250);
93
94 type = GLUT_RGB;
95 type |= GLUT_SINGLE;
96 glutInitDisplayMode(type);
97
98 if (glutCreateWindow("First Tri") == GL_FALSE) {
99 exit(1);
100 }
101
102 Init();
103
104 glutReshapeFunc(Reshape);
105 glutKeyboardFunc(Key);
106 glutDisplayFunc(Draw);
107 glutMainLoop();
108 return 0;
109 }