summaryrefslogtreecommitdiff
path: root/src/tests/zreaddraw.c
blob: 272d1f780659f26bc08e0c07c7a475ab637c298a (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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
 * Test glRead/DrawPixels for GL_DEPTH_COMPONENT, with pixelzoom.
 * 
 * Brian Paul
 * 23 August 2003
 */

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "glad/gl.h"
#include "glut_wrap.h"


#define ZWIDTH 100
#define ZHEIGHT 100

#define ZOOM 4

#define ZWIDTH2 (ZOOM * ZWIDTH)
#define ZHEIGHT2 (ZOOM * ZHEIGHT)

static GLint WinWidth = ZWIDTH + ZWIDTH2, WinHeight = ZHEIGHT + ZHEIGHT2;
static GLboolean Invert = GL_FALSE;
static GLboolean TestPacking = GL_FALSE;
static GLboolean TestList = GL_FALSE;


static void Display(void)
{
   GLfloat depth[ZWIDTH * ZHEIGHT * 2];
   GLfloat depth2[ZWIDTH2 * ZHEIGHT2]; /* *2 to test pixelstore stuff */
   GLuint list;
   GLenum depthType = GL_FLOAT;

   glClearColor(0.5, 0.5, 0.5, 1.0);
   glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

   glEnable(GL_DEPTH_TEST);

   /* draw a sphere */
   glViewport(0, 0, ZWIDTH, ZHEIGHT);
   glMatrixMode(GL_PROJECTION);
   glLoadIdentity();
   glOrtho(-1, 1, -1, 1, -1, 0);  /* clip away back half of sphere */
   glMatrixMode(GL_MODELVIEW);
   glLoadIdentity();
   glutSolidSphere(1.0, 20, 10);

   if (TestPacking) {
      glPixelStorei(GL_PACK_ROW_LENGTH, 120);
      glPixelStorei(GL_PACK_SKIP_PIXELS, 5);
   }

   /* read the depth image */
   glReadPixels(0, 0, ZWIDTH, ZHEIGHT, GL_DEPTH_COMPONENT, depthType, depth);
   if (depthType == GL_FLOAT) {
      GLfloat min, max;
      int i;
      min = max = depth[0];
      for (i = 1; i < ZWIDTH * ZHEIGHT; i++) {
         if (depth[i] < min)
            min = depth[i];
         if (depth[i] > max)
            max = depth[i];
      }
      printf("Depth value range: [%f, %f]\n", min, max);
   }

   /* debug */
   if (0) {
      int i;
      float *z = depth + ZWIDTH * 50;
      printf("z at y=50:\n");
      for (i = 0; i < ZWIDTH; i++) {
         printf("%5.3f ", z[i]);
         if ((i + 1) % 12 == 0)
            printf("\n");
      }
      printf("\n");
   }

   /* Draw the Z image as luminance above original rendering */
   glWindowPos2i(0, ZHEIGHT);
   glDrawPixels(ZWIDTH, ZHEIGHT, GL_LUMINANCE, depthType, depth);

   if (TestPacking) {
      glPixelStorei(GL_PACK_ROW_LENGTH, 0);
      glPixelStorei(GL_PACK_SKIP_PIXELS, 0);
      glPixelStorei(GL_UNPACK_ROW_LENGTH, 120);
      glPixelStorei(GL_UNPACK_SKIP_PIXELS, 5);
   }

   /* draw depth image with scaling (into z buffer) */
   glPixelZoom(ZOOM, ZOOM);
   glColor4f(1, 0, 0, 0);
   glWindowPos2i(ZWIDTH, 0);
   if (Invert) {
      glPixelTransferf(GL_DEPTH_SCALE, -1.0);
      glPixelTransferf(GL_DEPTH_BIAS, 1.0);
   }
   if (TestList) {
      list = glGenLists(1);
      glNewList(list, GL_COMPILE);
      glDrawPixels(ZWIDTH, ZHEIGHT, GL_DEPTH_COMPONENT, depthType, depth);
      glEndList();
      glCallList(list);
      glDeleteLists(list, 1);
   }
   else {
      glDrawPixels(ZWIDTH, ZHEIGHT, GL_DEPTH_COMPONENT, depthType, depth);
   }
   if (Invert) {
      glPixelTransferf(GL_DEPTH_SCALE, 1.0);
      glPixelTransferf(GL_DEPTH_BIAS, 0.0);
   }

   if (TestPacking) {
      glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
      glPixelStorei(GL_UNPACK_SKIP_PIXELS, 0);
   }

   glDisable(GL_DEPTH_TEST);

   /* read back scaled depth image */
   glReadPixels(ZWIDTH, 0, ZWIDTH2, ZHEIGHT2, GL_DEPTH_COMPONENT, GL_FLOAT, depth2);

   /* debug */
   if (0) {
      int i;
      float *z = depth2 + ZWIDTH2 * 200;
      printf("z at y=200:\n");
      for (i = 0; i < ZWIDTH2; i++) {
         printf("%5.3f ", z[i]);
         if ((i + 1) % 12 == 0)
            printf("\n");
      }
      printf("\n");
   }

   /* draw as luminance */
   glPixelZoom(1.0, 1.0);
   glWindowPos2i(ZWIDTH, 0);
   glDrawPixels(ZWIDTH2, ZHEIGHT2, GL_LUMINANCE, GL_FLOAT, depth2);

   glutSwapBuffers();
}


static void Reshape(int width, int height)
{
   WinWidth = width;
   WinHeight = height;
   glViewport(0, 0, width, height);
}


static void Key(unsigned char key, int x, int y)
{
   (void) x;
   (void) y;
   switch (key) {
      case 'i':
         Invert = !Invert;
         break;
      case 'p':
         TestPacking = !TestPacking;
         printf("Test pixel pack/unpack: %d\n", TestPacking);
         break;
      case 'l':
         TestList = !TestList;
         printf("Test dlist: %d\n", TestList);
         break;
      case 27:
         exit(0);
         break;
   }
   glutPostRedisplay();
}


static void Init(void)
{
   const GLfloat blue[4] = {.1, .1, 1.0, 1.0};
   const GLfloat gray[4] = {0.2, 0.2, 0.2, 1.0};
   const GLfloat white[4] = {1.0, 1.0, 1.0, 1.0};
   const GLfloat pos[4] = {0, 0, 10, 0};
   GLint z;

   glGetIntegerv(GL_DEPTH_BITS, &z);

   printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
   printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
   printf("GL_DEPTH_BITS = %d\n", z);

   glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, blue);
   glLightfv(GL_LIGHT0, GL_AMBIENT, gray);
   glLightfv(GL_LIGHT0, GL_DIFFUSE, white);
   glLightfv(GL_LIGHT0, GL_POSITION, pos);
   glEnable(GL_LIGHTING);
   glEnable(GL_LIGHT0);
}


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