Lines Matching refs:Height
25 static int Width = 200, Height = 200;
49 glDrawPixels(Width, Height, GL_DEPTH_COMPONENT, GL_FLOAT, z);
71 glDrawPixels(Width, Height, GL_DEPTH_COMPONENT, GL_FLOAT, z);
75 ShowDepthBuffer(Width, Height, 0.0, 1.0);
83 Reshape(int width, int height)
85 glViewport(0, 0, width, height);
94 Height = height;
96 z = (float *) malloc(width * height * 4);
99 for (i = 0; i < height; i++) {
100 float zval = (float) i / (height - 1);