Home | History | Annotate | Download | only in tests

Lines Matching refs:Height

5  *    -w WIDTH -h HEIGHT   sets window size
32 static GLuint Height = 512;
55 GLint size = Width * Height * 4;
79 glTexImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, GL_RGBA, Width, Height, 0,
94 glTexImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, GL_RGBA, Width, Height, 0,
104 h = Height;
109 h = min(10, Height);
163 static void Reshape( int width, int height )
165 glViewport( 0, 0, width, height );
169 gluOrtho2D( 0, width, height, 0 );
260 Width * Height * 4, NULL, GL_STREAM_DRAW);
294 Height = atoi(argv[i+1]);
295 if (Height <= 0) {
296 printf("Error, bad height\n");
303 glutInitWindowSize( Width, Height );