summaryrefslogtreecommitdiff
path: root/progs/tests/vptest1.c
blob: 560df2c3fdcf91030b60f087e8e129ef8f686b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/* Test glGenProgramsNV(), glIsProgramNV(), glLoadProgramNV() */

#include <assert.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define GL_GLEXT_PROTOTYPES
#include <GL/glut.h>



static void Display( void )
{
   glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );

   glPushMatrix();

   glBegin(GL_POLYGON);
   glVertexAttrib2fNV(0, -1, -1);
   glVertexAttrib2fNV(0, 1, -1);
   glVertexAttrib2fNV(0, 0,  1);
   glEnd();

   glPopMatrix();

   glutSwapBuffers();
}


static void Reshape( int width, int height )
{
   glViewport( 0, 0, width, height );
   glMatrixMode( GL_PROJECTION );
   glLoadIdentity();
   glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 25.0 );
   glMatrixMode( GL_MODELVIEW );
   glLoadIdentity();
   glTranslatef( 0.0, 0.0, -15.0 );
}


static void Key( unsigned char key, int x, int y )
{
   (void) x;
   (void) y;
   switch (key) {
      case 27:
         exit(0);
         break;
   }
   glutPostRedisplay();
}


static void Init( void )
{
   static const char *prog1 =
      "!!VP1.0\n"
      "MUL   o[COL0].xyz, R0, c[35]; \n"
      "END\n";
   static const char *prog2 =
      "!!VP1.0\n"
      "#\n"
      "# c[0-3]  = modelview projection (composite) matrix\n"
      "# c[32]   = normalized light direction in object-space\n"
      "# c[35]   = yellow diffuse material, (1.0, 1.0, 0.0, 1.0)\n"
      "# c[64].x = 0.0\n"
      "# c[64].z = 0.125, a scaling factor\n"
      "#\n"
      "# outputs diffuse illumination for color and perturbed position\n"
      "#\n"
      "DP3   R0, c[32], v[NRML];     # light direction DOT normal\n"
      "MUL   o[COL0].xyz, R0, c[35]; \n"
      "MAX   R0, c[64].x, R0; \n"
      "MUL   R0, R0, v[NRML]; \n"
      "MUL   R0, R0, c[64].z;  \n"
      "ADD   R1, v[OPOS], -R0;       # perturb object space position\n"
      "DP4   o[HPOS].x, c[0], R1; \n"
      "DP4   o[HPOS].y, c[1], R1; \n"
      "DP4   o[HPOS].z, c[2], R1; \n"
      "DP4   o[HPOS].w, c[3], R1; \n"
      "END\n";
   static const char *prog3 = 
      "!!VP1.0\n"
      "DP4   o[HPOS].x, c[0], v[OPOS];\n"
      "DP4   o[HPOS].y, c[1], v[OPOS];\n"
      "DP4   o[HPOS].z, c[2], v[OPOS];\n"
      "DP4   o[HPOS].w, c[3], v[OPOS];\n"
      "DP3   R0.x, c[4], v[NRML];\n"
      "DP3   R0.y, c[5], v[NRML]; \n"
      "DP3   R0.z, c[6], v[NRML];           # R0 = n' = transformed normal\n"
      "DP3   R1.x, c[32], R0;               # R1.x = Lpos DOT n'\n"
      "DP3   R1.y, c[33], R0;               # R1.y = hHat DOT n'\n"
      "MOV   R1.w, c[38].x;                 # R1.w = specular power\n"
      "LIT   R2, R1;                        # Compute lighting values\n"
      "MAD   R3, c[35].x, R2.y, c[35].y;    # diffuse + emissive\n"
      "MAD   o[COL0].xyz, c[36], R2.z, R3;  # + specular\n"
      "END\n";
   static const char *prog4 = 
      "!!VP1.0\n"
      "DP4   R2, R3, c[A0.x];\n"
      "DP4   R2, R3, c[A0.x + 5];\n"
      "DP4   o[HPOS], R3, c[A0.x - 4];\n"
      "END\n";
   static const char *prog5 = 
      "!!VSP1.0\n"
      "DP4   R2, R3, c[A0.x];\n"
      "DP4   R2, R3, v[0];\n"
      "DP4   c[3], R3, R2;\n"
      "END\n";


   GLuint progs[5];

   glGenProgramsNV(2, progs);
   assert(progs[0]);
   assert(progs[1]);
   assert(progs[0] != progs[1]);

   glGenProgramsNV(3, progs + 2);
   assert(progs[2]);
   assert(progs[3]);
   assert(progs[2] != progs[3]);
   assert(progs[0] != progs[2]);


   glLoadProgramNV(GL_VERTEX_PROGRAM_NV, 1,
                   strlen(prog1),
                   (const GLubyte *) prog1);
   assert(!glIsProgramNV(1));

   glLoadProgramNV(GL_VERTEX_PROGRAM_NV, 2,
                   strlen(prog2),
                   (const GLubyte *) prog2);
   assert(glIsProgramNV(2));

   glLoadProgramNV(GL_VERTEX_PROGRAM_NV, 3,
                   strlen(prog3),
                   (const GLubyte *) prog3);
   assert(glIsProgramNV(3));

   glLoadProgramNV(GL_VERTEX_PROGRAM_NV, 4,
                   strlen(prog4),
                   (const GLubyte *) prog4);
   assert(glIsProgramNV(4));

   glLoadProgramNV(GL_VERTEX_STATE_PROGRAM_NV, 5,
                   strlen(prog5),
                   (const GLubyte *) prog5);
   assert(glIsProgramNV(5));

   printf("glGetError = %d\n", (int) glGetError());
}


int main( int argc, char *argv[] )
{
   glutInit( &argc, argv );
   glutInitWindowPosition( 0, 0 );
   glutInitWindowSize( 250, 250 );
   glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH );
   glutCreateWindow(argv[0]);
   glutReshapeFunc( Reshape );
   glutKeyboardFunc( Key );
   glutDisplayFunc( Display );
   Init();
   glutMainLoop();
   return 0;
}