blob: cc4e4902694d0681a61dbe13c657dad4fcc9290f [file] [log] [blame]
Brian Pauleca1bc92000-03-01 16:23:14 +00001
2/*
3 * glReadPixels and glCopyPixels test
4 *
5 * Brian Paul March 1, 2000 This file is in the public domain.
6 */
7
Brian Pauleca1bc92000-03-01 16:23:14 +00008#include <assert.h>
9#include <stdio.h>
10#include <stdlib.h>
11#include <math.h>
Brian Paul2d84ed82005-01-09 17:39:06 +000012#include <string.h>
Brian Pauleca1bc92000-03-01 16:23:14 +000013#include <GL/glut.h>
14
Brian Paul0fe7f402005-01-09 17:06:22 +000015#include "readtex.h"
Brian Pauleca1bc92000-03-01 16:23:14 +000016
17#define IMAGE_FILE "../images/girl.rgb"
18
19static int ImgWidth, ImgHeight;
Keith Whitwelleb5d9692009-04-22 15:19:44 +010020static int WinWidth, WinHeight;
Brian Pauleca1bc92000-03-01 16:23:14 +000021static GLenum ImgFormat;
22static GLubyte *Image = NULL;
23
24static int APosX, APosY; /* simple drawpixels */
25static int BPosX, BPosY; /* read/draw pixels */
26static int CPosX, CPosY; /* copypixels */
27
28static GLboolean DrawFront = GL_FALSE;
29static GLboolean ScaleAndBias = GL_FALSE;
Brian Paul4f6d60e2000-03-23 19:47:25 +000030static GLboolean Benchmark = GL_FALSE;
Keith Whitwelleb5d9692009-04-22 15:19:44 +010031static GLboolean Triangle = GL_FALSE;
Brian Pauleca1bc92000-03-01 16:23:14 +000032static GLubyte *TempImage = NULL;
33
Brian Paul1ad12872006-09-23 16:09:26 +000034#define COMBO 1
35#if COMBO == 0
Brian Pauld3d72802000-03-31 01:01:31 +000036#define ReadFormat ImgFormat
37#define ReadType GL_UNSIGNED_BYTE
Brian Paul1ad12872006-09-23 16:09:26 +000038#elif COMBO == 1
Alan Hourihanea5cdf992002-05-02 09:17:59 +000039static GLenum ReadFormat = GL_RGBA;
Brian Pauld3d72802000-03-31 01:01:31 +000040static GLenum ReadType = GL_UNSIGNED_BYTE;
Brian Paul1ad12872006-09-23 16:09:26 +000041#elif COMBO == 2
Brian Pauld3d72802000-03-31 01:01:31 +000042static GLenum ReadFormat = GL_RGB;
Brian Paul8818eae2005-05-18 15:44:13 +000043static GLenum ReadType = GL_UNSIGNED_BYTE;
Brian Paul1ad12872006-09-23 16:09:26 +000044#elif COMBO == 3
Brian Paul8818eae2005-05-18 15:44:13 +000045static GLenum ReadFormat = GL_RGB;
Brian Pauld3d72802000-03-31 01:01:31 +000046static GLenum ReadType = GL_UNSIGNED_SHORT_5_6_5;
Brian Paul1ad12872006-09-23 16:09:26 +000047#elif COMBO == 4
Brian Paul1100b4d2000-10-16 21:24:39 +000048static GLenum ReadFormat = GL_RGBA;
49static GLenum ReadType = GL_UNSIGNED_SHORT_1_5_5_5_REV;
Brian Paul1ad12872006-09-23 16:09:26 +000050#elif COMBO == 5
Brian Paul1100b4d2000-10-16 21:24:39 +000051static GLenum ReadFormat = GL_BGRA;
52static GLenum ReadType = GL_UNSIGNED_SHORT_5_5_5_1;
Brian Paul1ad12872006-09-23 16:09:26 +000053#elif COMBO == 6
Brian Paul1100b4d2000-10-16 21:24:39 +000054static GLenum ReadFormat = GL_BGRA;
55static GLenum ReadType = GL_UNSIGNED_SHORT_4_4_4_4_REV;
Brian Paul1ad12872006-09-23 16:09:26 +000056#elif COMBO == 7
57static GLenum ReadFormat = GL_RGBA;
58static GLenum ReadType = GL_HALF_FLOAT_ARB;
59#undef GL_OES_read_format
Brian Paul1100b4d2000-10-16 21:24:39 +000060#endif
Brian Pauld3d72802000-03-31 01:01:31 +000061
Brian Pauleca1bc92000-03-01 16:23:14 +000062
63static void
64Reset( void )
65{
66 APosX = 5; APosY = 20;
67 BPosX = APosX + ImgWidth + 5; BPosY = 20;
68 CPosX = BPosX + ImgWidth + 5; CPosY = 20;
69}
70
71
72static void
73PrintString(const char *s)
74{
75 while (*s) {
76 glutBitmapCharacter(GLUT_BITMAP_8_BY_13, (int) *s);
77 s++;
78 }
79}
80
81
82static void
83SetupPixelTransfer(GLboolean invert)
84{
85 if (invert) {
86 glPixelTransferf(GL_RED_SCALE, -1.0);
87 glPixelTransferf(GL_RED_BIAS, 1.0);
88 glPixelTransferf(GL_GREEN_SCALE, -1.0);
89 glPixelTransferf(GL_GREEN_BIAS, 1.0);
90 glPixelTransferf(GL_BLUE_SCALE, -1.0);
91 glPixelTransferf(GL_BLUE_BIAS, 1.0);
92 }
93 else {
94 glPixelTransferf(GL_RED_SCALE, 1.0);
95 glPixelTransferf(GL_RED_BIAS, 0.0);
96 glPixelTransferf(GL_GREEN_SCALE, 1.0);
97 glPixelTransferf(GL_GREEN_BIAS, 0.0);
98 glPixelTransferf(GL_BLUE_SCALE, 1.0);
99 glPixelTransferf(GL_BLUE_BIAS, 0.0);
100 }
101}
102
103
Brian Paul8818eae2005-05-18 15:44:13 +0000104/**
105 * Exercise Pixel Pack parameters by reading the image in four pieces.
106 */
107static void
108ComplexReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
109 GLenum format, GLenum type, GLvoid *pixels)
110{
111 const GLsizei width0 = width / 2;
112 const GLsizei width1 = width - width0;
113 const GLsizei height0 = height / 2;
114 const GLsizei height1 = height - height0;
115
116 glPixelStorei(GL_PACK_ROW_LENGTH, width);
117
118 /* lower-left quadrant */
119 glReadPixels(x, y, width0, height0, format, type, pixels);
120
121 /* lower-right quadrant */
122 glPixelStorei(GL_PACK_SKIP_PIXELS, width0);
123 glReadPixels(x + width0, y, width1, height0, format, type, pixels);
124
125 /* upper-left quadrant */
126 glPixelStorei(GL_PACK_SKIP_PIXELS, 0);
127 glPixelStorei(GL_PACK_SKIP_ROWS, height0);
128 glReadPixels(x, y + height0, width0, height1, format, type, pixels);
129
130 /* upper-right quadrant */
131 glPixelStorei(GL_PACK_SKIP_PIXELS, width0);
132 glPixelStorei(GL_PACK_SKIP_ROWS, height0);
133 glReadPixels(x + width0, y + height0, width1, height1, format, type, pixels);
134
135 /* restore defaults */
136 glPixelStorei(GL_PACK_SKIP_PIXELS, 0);
137 glPixelStorei(GL_PACK_SKIP_ROWS, 0);
138 glPixelStorei(GL_PACK_ROW_LENGTH, ImgWidth);
139}
140
141
142
Brian Pauleca1bc92000-03-01 16:23:14 +0000143static void
144Display( void )
145{
Brian Paul1100b4d2000-10-16 21:24:39 +0000146 glClearColor(.3, .3, .3, 1);
Brian Pauleca1bc92000-03-01 16:23:14 +0000147 glClear( GL_COLOR_BUFFER_BIT );
148
149 glRasterPos2i(5, ImgHeight+25);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000150 PrintString("f = toggle front/back s = toggle scale/bias b = benchmark");
Brian Pauleca1bc92000-03-01 16:23:14 +0000151
152 /* draw original image */
153 glRasterPos2i(APosX, 5);
154 PrintString("Original");
Keith Whitwelleb5d9692009-04-22 15:19:44 +0100155 if (!Triangle) {
156 glRasterPos2i(APosX, APosY);
157 glEnable(GL_DITHER);
158 SetupPixelTransfer(GL_FALSE);
159 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
160 glDrawPixels(ImgWidth, ImgHeight, ImgFormat, GL_UNSIGNED_BYTE, Image);
161 }
162 else {
163 float z = 0;
164
165 glViewport(APosX, APosY, ImgWidth, ImgHeight);
166 glMatrixMode( GL_PROJECTION );
167 glLoadIdentity();
168 glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
169 glDisable(GL_CULL_FACE);
170
171 /* Red should never be seen
172 */
173 glBegin(GL_POLYGON);
174 glColor3f(1,0,0);
175 glVertex3f(-2, -2, z);
176 glVertex3f(-2, 2, z);
177 glVertex3f(2, 2, z);
178 glVertex3f(2, -2, z);
179 glEnd();
180
181 /* Blue background
182 */
183 glBegin(GL_POLYGON);
184 glColor3f(.5,.5,1);
185 glVertex3f(-1, -1, z);
186 glVertex3f(-1, 1, z);
187 glVertex3f(1, 1, z);
188 glVertex3f(1, -1, z);
189 glEnd();
190
191 /* Triangle
192 */
193 glBegin(GL_TRIANGLES);
194 glColor3f(.8,0,0);
195 glVertex3f(-0.9, -0.9, z);
196 glColor3f(0,.9,0);
197 glVertex3f( 0.9, -0.9, z);
198 glColor3f(0,0,.7);
199 glVertex3f( 0.0, 0.9, z);
200 glEnd();
201
202 glColor3f(1,1,1);
203
204 glViewport( 0, 0, WinWidth, WinHeight );
205 glMatrixMode( GL_PROJECTION );
206 glLoadIdentity();
207 glOrtho( 0.0, WinWidth, 0.0, WinHeight, -1.0, 1.0 );
208 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000209
Brian Paul8818eae2005-05-18 15:44:13 +0000210 /* might try alignment=4 here for testing */
211 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
212 glPixelStorei(GL_PACK_ALIGNMENT, 1);
213
Brian Pauleca1bc92000-03-01 16:23:14 +0000214 /* do readpixels, drawpixels */
215 glRasterPos2i(BPosX, 5);
216 PrintString("Read/DrawPixels");
217 SetupPixelTransfer(ScaleAndBias);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000218 if (Benchmark) {
219 GLint reads = 0;
220 GLint endTime;
221 GLint startTime = glutGet(GLUT_ELAPSED_TIME);
Brian Paul79e74cd2009-12-11 15:22:17 -0700222 GLdouble seconds, mpixels, mpixelsPerSecond;
Brian Paul4f6d60e2000-03-23 19:47:25 +0000223 printf("Benchmarking...\n");
224 do {
225 glReadPixels(APosX, APosY, ImgWidth, ImgHeight,
Brian Pauld3d72802000-03-31 01:01:31 +0000226 ReadFormat, ReadType, TempImage);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000227 reads++;
228 endTime = glutGet(GLUT_ELAPSED_TIME);
229 } while (endTime - startTime < 4000); /* 4 seconds */
230 seconds = (double) (endTime - startTime) / 1000.0;
Brian Paul79e74cd2009-12-11 15:22:17 -0700231 mpixels = reads * (ImgWidth * ImgHeight / (1000.0 * 1000.0));
232 mpixelsPerSecond = mpixels / seconds;
233 printf("Result: %d reads in %f seconds = %f Mpixels/sec\n",
234 reads, seconds, mpixelsPerSecond);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000235 Benchmark = GL_FALSE;
236 }
237 else {
Brian Paul1100b4d2000-10-16 21:24:39 +0000238 /* clear the temporary image to white (helpful for debugging */
239 memset(TempImage, 255, ImgWidth * ImgHeight * 4);
Brian Paul713635a2005-08-25 22:09:43 +0000240#if 1
Brian Paul4f6d60e2000-03-23 19:47:25 +0000241 glReadPixels(APosX, APosY, ImgWidth, ImgHeight,
Brian Pauld3d72802000-03-31 01:01:31 +0000242 ReadFormat, ReadType, TempImage);
Brian Paul713635a2005-08-25 22:09:43 +0000243 (void) ComplexReadPixels;
Brian Paul8818eae2005-05-18 15:44:13 +0000244#else
Brian Paul713635a2005-08-25 22:09:43 +0000245 /* you might use this when debugging */
Brian Paul8818eae2005-05-18 15:44:13 +0000246 ComplexReadPixels(APosX, APosY, ImgWidth, ImgHeight,
247 ReadFormat, ReadType, TempImage);
248#endif
Brian Paul4f6d60e2000-03-23 19:47:25 +0000249 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000250 glRasterPos2i(BPosX, BPosY);
251 glDisable(GL_DITHER);
252 SetupPixelTransfer(GL_FALSE);
Brian Pauld3d72802000-03-31 01:01:31 +0000253 glDrawPixels(ImgWidth, ImgHeight, ReadFormat, ReadType, TempImage);
Brian Pauleca1bc92000-03-01 16:23:14 +0000254
255 /* do copypixels */
256 glRasterPos2i(CPosX, 5);
257 PrintString("CopyPixels");
258 glRasterPos2i(CPosX, CPosY);
259 glDisable(GL_DITHER);
260 SetupPixelTransfer(ScaleAndBias);
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000261 glCopyPixels(APosX, APosY, ImgWidth, ImgHeight, GL_COLOR);
Brian Pauleca1bc92000-03-01 16:23:14 +0000262
263 if (!DrawFront)
264 glutSwapBuffers();
Alan Hourihane056b3582002-05-02 09:15:22 +0000265 else
266 glFinish();
Brian Pauleca1bc92000-03-01 16:23:14 +0000267}
268
269
Brian Paul4f6d60e2000-03-23 19:47:25 +0000270static void
271Reshape( int width, int height )
Brian Pauleca1bc92000-03-01 16:23:14 +0000272{
Keith Whitwelleb5d9692009-04-22 15:19:44 +0100273 WinWidth = width;
274 WinHeight = height;
275
Brian Pauleca1bc92000-03-01 16:23:14 +0000276 glViewport( 0, 0, width, height );
277 glMatrixMode( GL_PROJECTION );
278 glLoadIdentity();
279 glOrtho( 0.0, width, 0.0, height, -1.0, 1.0 );
280 glMatrixMode( GL_MODELVIEW );
281 glLoadIdentity();
282}
283
284
Brian Paul4f6d60e2000-03-23 19:47:25 +0000285static void
286Key( unsigned char key, int x, int y )
Brian Pauleca1bc92000-03-01 16:23:14 +0000287{
288 (void) x;
289 (void) y;
290 switch (key) {
291 case 'b':
Brian Paul4f6d60e2000-03-23 19:47:25 +0000292 Benchmark = GL_TRUE;
293 break;
Keith Whitwelleb5d9692009-04-22 15:19:44 +0100294 case 't':
295 Triangle = !Triangle;
296 break;
Brian Paul4f6d60e2000-03-23 19:47:25 +0000297 case 's':
Brian Pauleca1bc92000-03-01 16:23:14 +0000298 ScaleAndBias = !ScaleAndBias;
299 break;
300 case 'f':
301 DrawFront = !DrawFront;
Brian Paul4f6d60e2000-03-23 19:47:25 +0000302 if (DrawFront) {
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000303 glDrawBuffer(GL_FRONT);
304 glReadBuffer(GL_FRONT);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000305 }
306 else {
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000307 glDrawBuffer(GL_BACK);
308 glReadBuffer(GL_BACK);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000309 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000310 printf("glDrawBuffer(%s)\n", DrawFront ? "GL_FRONT" : "GL_BACK");
311 break;
312 case 27:
313 exit(0);
314 break;
315 }
316 glutPostRedisplay();
317}
318
319
Brian Pauleca1bc92000-03-01 16:23:14 +0000320static void
321Init( GLboolean ciMode )
322{
Ian Romanick33899b72004-10-16 01:16:54 +0000323 GLboolean have_read_format = GL_FALSE;
324
Brian Pauleca1bc92000-03-01 16:23:14 +0000325 printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
326 printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
327
328 Image = LoadRGBImage( IMAGE_FILE, &ImgWidth, &ImgHeight, &ImgFormat );
329 if (!Image) {
330 printf("Couldn't read %s\n", IMAGE_FILE);
331 exit(0);
332 }
333
334 if (ciMode) {
335 /* Convert RGB image to grayscale */
Brian Paulf02a5f62002-07-12 15:54:01 +0000336 GLubyte *indexImage = (GLubyte *) malloc( ImgWidth * ImgHeight );
Brian Pauleca1bc92000-03-01 16:23:14 +0000337 GLint i;
338 for (i=0; i<ImgWidth*ImgHeight; i++) {
339 int gray = Image[i*3] + Image[i*3+1] + Image[i*3+2];
340 indexImage[i] = gray / 3;
341 }
342 free(Image);
343 Image = indexImage;
344 ImgFormat = GL_COLOR_INDEX;
345
346 for (i=0;i<255;i++) {
347 float g = i / 255.0;
348 glutSetColor(i, g, g, g);
349 }
350 }
351
Ian Romanick33899b72004-10-16 01:16:54 +0000352#ifdef GL_OES_read_format
353 if ( glutExtensionSupported( "GL_OES_read_format" ) ) {
Brian Paul4fe34f32004-11-26 13:43:17 +0000354 glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE_OES, (GLint *) &ReadType);
355 glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES, (GLint *) &ReadFormat);
Ian Romanick33899b72004-10-16 01:16:54 +0000356
357 have_read_format = GL_TRUE;
358 }
359#endif
360
361 printf( "GL_OES_read_format %ssupported. "
362 "Using type / format = 0x%04x / 0x%04x\n",
363 (have_read_format) ? "" : "not ",
364 ReadType, ReadFormat );
365
Brian Pauleca1bc92000-03-01 16:23:14 +0000366 printf("Loaded %d by %d image\n", ImgWidth, ImgHeight );
367
Brian Pauleca1bc92000-03-01 16:23:14 +0000368 glPixelStorei(GL_UNPACK_ROW_LENGTH, ImgWidth);
Brian Pauleca1bc92000-03-01 16:23:14 +0000369 glPixelStorei(GL_PACK_ROW_LENGTH, ImgWidth);
370
371 Reset();
372
Brian Paul1ad12872006-09-23 16:09:26 +0000373 /* allocate large TempImage to store and image data type, plus an
374 * extra 1KB in case we're tinkering with pack alignment.
375 */
376 TempImage = (GLubyte *) malloc(ImgWidth * ImgHeight * 4 * 4
Brian Paul8818eae2005-05-18 15:44:13 +0000377 + 1000);
Brian Pauleca1bc92000-03-01 16:23:14 +0000378 assert(TempImage);
379}
380
381
Brian Paul4f6d60e2000-03-23 19:47:25 +0000382int
383main( int argc, char *argv[] )
Brian Pauleca1bc92000-03-01 16:23:14 +0000384{
385 GLboolean ciMode = GL_FALSE;
Brian Paul263f4322009-12-18 08:12:55 -0700386 glutInitWindowSize( 750, 250 );
387 glutInit( &argc, argv );
Brian Pauleca1bc92000-03-01 16:23:14 +0000388 if (argc > 1 && strcmp(argv[1], "-ci")==0) {
389 ciMode = GL_TRUE;
390 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000391 if (ciMode)
392 glutInitDisplayMode( GLUT_INDEX | GLUT_DOUBLE );
393 else
394 glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE );
Brian Pauleca1bc92000-03-01 16:23:14 +0000395 glutCreateWindow(argv[0]);
Brian Pauleca1bc92000-03-01 16:23:14 +0000396 Init(ciMode);
Brian Pauleca1bc92000-03-01 16:23:14 +0000397 glutReshapeFunc( Reshape );
398 glutKeyboardFunc( Key );
Brian Pauleca1bc92000-03-01 16:23:14 +0000399 glutDisplayFunc( Display );
Brian Pauleca1bc92000-03-01 16:23:14 +0000400 glutMainLoop();
401 return 0;
402}