blob: 75ba45c1e5f2eee5e587377c30b9adc2b7b1474e [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;
20static GLenum ImgFormat;
21static GLubyte *Image = NULL;
22
23static int APosX, APosY; /* simple drawpixels */
24static int BPosX, BPosY; /* read/draw pixels */
25static int CPosX, CPosY; /* copypixels */
26
27static GLboolean DrawFront = GL_FALSE;
28static GLboolean ScaleAndBias = GL_FALSE;
Brian Paul4f6d60e2000-03-23 19:47:25 +000029static GLboolean Benchmark = GL_FALSE;
Brian Pauleca1bc92000-03-01 16:23:14 +000030static GLubyte *TempImage = NULL;
31
Brian Paul1100b4d2000-10-16 21:24:39 +000032#if 0
Brian Pauld3d72802000-03-31 01:01:31 +000033#define ReadFormat ImgFormat
34#define ReadType GL_UNSIGNED_BYTE
35#endif
Brian Paul1100b4d2000-10-16 21:24:39 +000036#if 1
Alan Hourihanea5cdf992002-05-02 09:17:59 +000037static GLenum ReadFormat = GL_RGBA;
Brian Pauld3d72802000-03-31 01:01:31 +000038static GLenum ReadType = GL_UNSIGNED_BYTE;
39#endif
40#if 0
41static GLenum ReadFormat = GL_RGB;
Brian Paul8818eae2005-05-18 15:44:13 +000042static GLenum ReadType = GL_UNSIGNED_BYTE;
43#endif
44#if 0
45static GLenum ReadFormat = GL_RGB;
Brian Pauld3d72802000-03-31 01:01:31 +000046static GLenum ReadType = GL_UNSIGNED_SHORT_5_6_5;
47#endif
Brian Paul1100b4d2000-10-16 21:24:39 +000048#if 0
49static GLenum ReadFormat = GL_RGBA;
50static GLenum ReadType = GL_UNSIGNED_SHORT_1_5_5_5_REV;
51#endif
52#if 0
53static GLenum ReadFormat = GL_BGRA;
54static GLenum ReadType = GL_UNSIGNED_SHORT_5_5_5_1;
55#endif
56#if 0
57static GLenum ReadFormat = GL_BGRA;
58static GLenum ReadType = GL_UNSIGNED_SHORT_4_4_4_4_REV;
59#endif
Brian Pauld3d72802000-03-31 01:01:31 +000060
Brian Pauleca1bc92000-03-01 16:23:14 +000061
62static void
63Reset( void )
64{
65 APosX = 5; APosY = 20;
66 BPosX = APosX + ImgWidth + 5; BPosY = 20;
67 CPosX = BPosX + ImgWidth + 5; CPosY = 20;
68}
69
70
71static void
72PrintString(const char *s)
73{
74 while (*s) {
75 glutBitmapCharacter(GLUT_BITMAP_8_BY_13, (int) *s);
76 s++;
77 }
78}
79
80
81static void
82SetupPixelTransfer(GLboolean invert)
83{
84 if (invert) {
85 glPixelTransferf(GL_RED_SCALE, -1.0);
86 glPixelTransferf(GL_RED_BIAS, 1.0);
87 glPixelTransferf(GL_GREEN_SCALE, -1.0);
88 glPixelTransferf(GL_GREEN_BIAS, 1.0);
89 glPixelTransferf(GL_BLUE_SCALE, -1.0);
90 glPixelTransferf(GL_BLUE_BIAS, 1.0);
91 }
92 else {
93 glPixelTransferf(GL_RED_SCALE, 1.0);
94 glPixelTransferf(GL_RED_BIAS, 0.0);
95 glPixelTransferf(GL_GREEN_SCALE, 1.0);
96 glPixelTransferf(GL_GREEN_BIAS, 0.0);
97 glPixelTransferf(GL_BLUE_SCALE, 1.0);
98 glPixelTransferf(GL_BLUE_BIAS, 0.0);
99 }
100}
101
102
Brian Paul8818eae2005-05-18 15:44:13 +0000103/**
104 * Exercise Pixel Pack parameters by reading the image in four pieces.
105 */
106static void
107ComplexReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
108 GLenum format, GLenum type, GLvoid *pixels)
109{
110 const GLsizei width0 = width / 2;
111 const GLsizei width1 = width - width0;
112 const GLsizei height0 = height / 2;
113 const GLsizei height1 = height - height0;
114
115 glPixelStorei(GL_PACK_ROW_LENGTH, width);
116
117 /* lower-left quadrant */
118 glReadPixels(x, y, width0, height0, format, type, pixels);
119
120 /* lower-right quadrant */
121 glPixelStorei(GL_PACK_SKIP_PIXELS, width0);
122 glReadPixels(x + width0, y, width1, height0, format, type, pixels);
123
124 /* upper-left quadrant */
125 glPixelStorei(GL_PACK_SKIP_PIXELS, 0);
126 glPixelStorei(GL_PACK_SKIP_ROWS, height0);
127 glReadPixels(x, y + height0, width0, height1, format, type, pixels);
128
129 /* upper-right quadrant */
130 glPixelStorei(GL_PACK_SKIP_PIXELS, width0);
131 glPixelStorei(GL_PACK_SKIP_ROWS, height0);
132 glReadPixels(x + width0, y + height0, width1, height1, format, type, pixels);
133
134 /* restore defaults */
135 glPixelStorei(GL_PACK_SKIP_PIXELS, 0);
136 glPixelStorei(GL_PACK_SKIP_ROWS, 0);
137 glPixelStorei(GL_PACK_ROW_LENGTH, ImgWidth);
138}
139
140
141
Brian Pauleca1bc92000-03-01 16:23:14 +0000142static void
143Display( void )
144{
Brian Paul1100b4d2000-10-16 21:24:39 +0000145 glClearColor(.3, .3, .3, 1);
Brian Pauleca1bc92000-03-01 16:23:14 +0000146 glClear( GL_COLOR_BUFFER_BIT );
147
148 glRasterPos2i(5, ImgHeight+25);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000149 PrintString("f = toggle front/back s = toggle scale/bias b = benchmark");
Brian Pauleca1bc92000-03-01 16:23:14 +0000150
151 /* draw original image */
152 glRasterPos2i(APosX, 5);
153 PrintString("Original");
154 glRasterPos2i(APosX, APosY);
155 glEnable(GL_DITHER);
156 SetupPixelTransfer(GL_FALSE);
Brian Paul8818eae2005-05-18 15:44:13 +0000157 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
Brian Pauleca1bc92000-03-01 16:23:14 +0000158 glDrawPixels(ImgWidth, ImgHeight, ImgFormat, GL_UNSIGNED_BYTE, Image);
159
Brian Paul8818eae2005-05-18 15:44:13 +0000160 /* might try alignment=4 here for testing */
161 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
162 glPixelStorei(GL_PACK_ALIGNMENT, 1);
163
Brian Pauleca1bc92000-03-01 16:23:14 +0000164 /* do readpixels, drawpixels */
165 glRasterPos2i(BPosX, 5);
166 PrintString("Read/DrawPixels");
167 SetupPixelTransfer(ScaleAndBias);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000168 if (Benchmark) {
169 GLint reads = 0;
170 GLint endTime;
171 GLint startTime = glutGet(GLUT_ELAPSED_TIME);
172 GLdouble seconds, pixelsPerSecond;
173 printf("Benchmarking...\n");
174 do {
175 glReadPixels(APosX, APosY, ImgWidth, ImgHeight,
Brian Pauld3d72802000-03-31 01:01:31 +0000176 ReadFormat, ReadType, TempImage);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000177 reads++;
178 endTime = glutGet(GLUT_ELAPSED_TIME);
179 } while (endTime - startTime < 4000); /* 4 seconds */
180 seconds = (double) (endTime - startTime) / 1000.0;
181 pixelsPerSecond = reads * ImgWidth * ImgHeight / seconds;
182 printf("Result: %d reads in %f seconds = %f pixels/sec\n",
183 reads, seconds, pixelsPerSecond);
184 Benchmark = GL_FALSE;
185 }
186 else {
Brian Paul1100b4d2000-10-16 21:24:39 +0000187 /* clear the temporary image to white (helpful for debugging */
188 memset(TempImage, 255, ImgWidth * ImgHeight * 4);
Brian Paul713635a2005-08-25 22:09:43 +0000189#if 1
Brian Paul4f6d60e2000-03-23 19:47:25 +0000190 glReadPixels(APosX, APosY, ImgWidth, ImgHeight,
Brian Pauld3d72802000-03-31 01:01:31 +0000191 ReadFormat, ReadType, TempImage);
Brian Paul713635a2005-08-25 22:09:43 +0000192 (void) ComplexReadPixels;
Brian Paul8818eae2005-05-18 15:44:13 +0000193#else
Brian Paul713635a2005-08-25 22:09:43 +0000194 /* you might use this when debugging */
Brian Paul8818eae2005-05-18 15:44:13 +0000195 ComplexReadPixels(APosX, APosY, ImgWidth, ImgHeight,
196 ReadFormat, ReadType, TempImage);
197#endif
Brian Paul4f6d60e2000-03-23 19:47:25 +0000198 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000199 glRasterPos2i(BPosX, BPosY);
200 glDisable(GL_DITHER);
201 SetupPixelTransfer(GL_FALSE);
Brian Pauld3d72802000-03-31 01:01:31 +0000202 glDrawPixels(ImgWidth, ImgHeight, ReadFormat, ReadType, TempImage);
Brian Pauleca1bc92000-03-01 16:23:14 +0000203
204 /* do copypixels */
205 glRasterPos2i(CPosX, 5);
206 PrintString("CopyPixels");
207 glRasterPos2i(CPosX, CPosY);
208 glDisable(GL_DITHER);
209 SetupPixelTransfer(ScaleAndBias);
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000210 glCopyPixels(APosX, APosY, ImgWidth, ImgHeight, GL_COLOR);
Brian Pauleca1bc92000-03-01 16:23:14 +0000211
212 if (!DrawFront)
213 glutSwapBuffers();
Alan Hourihane056b3582002-05-02 09:15:22 +0000214 else
215 glFinish();
Brian Pauleca1bc92000-03-01 16:23:14 +0000216}
217
218
Brian Paul4f6d60e2000-03-23 19:47:25 +0000219static void
220Reshape( int width, int height )
Brian Pauleca1bc92000-03-01 16:23:14 +0000221{
222 glViewport( 0, 0, width, height );
223 glMatrixMode( GL_PROJECTION );
224 glLoadIdentity();
225 glOrtho( 0.0, width, 0.0, height, -1.0, 1.0 );
226 glMatrixMode( GL_MODELVIEW );
227 glLoadIdentity();
228}
229
230
Brian Paul4f6d60e2000-03-23 19:47:25 +0000231static void
232Key( unsigned char key, int x, int y )
Brian Pauleca1bc92000-03-01 16:23:14 +0000233{
234 (void) x;
235 (void) y;
236 switch (key) {
237 case 'b':
Brian Paul4f6d60e2000-03-23 19:47:25 +0000238 Benchmark = GL_TRUE;
239 break;
240 case 's':
Brian Pauleca1bc92000-03-01 16:23:14 +0000241 ScaleAndBias = !ScaleAndBias;
242 break;
243 case 'f':
244 DrawFront = !DrawFront;
Brian Paul4f6d60e2000-03-23 19:47:25 +0000245 if (DrawFront) {
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000246 glDrawBuffer(GL_FRONT);
247 glReadBuffer(GL_FRONT);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000248 }
249 else {
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000250 glDrawBuffer(GL_BACK);
251 glReadBuffer(GL_BACK);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000252 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000253 printf("glDrawBuffer(%s)\n", DrawFront ? "GL_FRONT" : "GL_BACK");
254 break;
255 case 27:
256 exit(0);
257 break;
258 }
259 glutPostRedisplay();
260}
261
262
Brian Pauleca1bc92000-03-01 16:23:14 +0000263static void
264Init( GLboolean ciMode )
265{
Ian Romanick33899b72004-10-16 01:16:54 +0000266 GLboolean have_read_format = GL_FALSE;
267
Brian Pauleca1bc92000-03-01 16:23:14 +0000268 printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
269 printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
270
271 Image = LoadRGBImage( IMAGE_FILE, &ImgWidth, &ImgHeight, &ImgFormat );
272 if (!Image) {
273 printf("Couldn't read %s\n", IMAGE_FILE);
274 exit(0);
275 }
276
277 if (ciMode) {
278 /* Convert RGB image to grayscale */
Brian Paulf02a5f62002-07-12 15:54:01 +0000279 GLubyte *indexImage = (GLubyte *) malloc( ImgWidth * ImgHeight );
Brian Pauleca1bc92000-03-01 16:23:14 +0000280 GLint i;
281 for (i=0; i<ImgWidth*ImgHeight; i++) {
282 int gray = Image[i*3] + Image[i*3+1] + Image[i*3+2];
283 indexImage[i] = gray / 3;
284 }
285 free(Image);
286 Image = indexImage;
287 ImgFormat = GL_COLOR_INDEX;
288
289 for (i=0;i<255;i++) {
290 float g = i / 255.0;
291 glutSetColor(i, g, g, g);
292 }
293 }
294
Ian Romanick33899b72004-10-16 01:16:54 +0000295#ifdef GL_OES_read_format
296 if ( glutExtensionSupported( "GL_OES_read_format" ) ) {
Brian Paul4fe34f32004-11-26 13:43:17 +0000297 glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE_OES, (GLint *) &ReadType);
298 glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES, (GLint *) &ReadFormat);
Ian Romanick33899b72004-10-16 01:16:54 +0000299
300 have_read_format = GL_TRUE;
301 }
302#endif
303
304 printf( "GL_OES_read_format %ssupported. "
305 "Using type / format = 0x%04x / 0x%04x\n",
306 (have_read_format) ? "" : "not ",
307 ReadType, ReadFormat );
308
Brian Pauleca1bc92000-03-01 16:23:14 +0000309 printf("Loaded %d by %d image\n", ImgWidth, ImgHeight );
310
Brian Pauleca1bc92000-03-01 16:23:14 +0000311 glPixelStorei(GL_UNPACK_ROW_LENGTH, ImgWidth);
Brian Pauleca1bc92000-03-01 16:23:14 +0000312 glPixelStorei(GL_PACK_ROW_LENGTH, ImgWidth);
313
314 Reset();
315
Brian Paul8818eae2005-05-18 15:44:13 +0000316 /* allocate an extra 1KB in case we're tinkering with pack alignment */
317 TempImage = (GLubyte *) malloc(ImgWidth * ImgHeight * 4 * sizeof(GLubyte)
318 + 1000);
Brian Pauleca1bc92000-03-01 16:23:14 +0000319 assert(TempImage);
320}
321
322
Brian Paul4f6d60e2000-03-23 19:47:25 +0000323int
324main( int argc, char *argv[] )
Brian Pauleca1bc92000-03-01 16:23:14 +0000325{
326 GLboolean ciMode = GL_FALSE;
Brian Pauleca1bc92000-03-01 16:23:14 +0000327 if (argc > 1 && strcmp(argv[1], "-ci")==0) {
328 ciMode = GL_TRUE;
329 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000330 glutInit( &argc, argv );
331 glutInitWindowPosition( 0, 0 );
332 glutInitWindowSize( 750, 250 );
Brian Pauleca1bc92000-03-01 16:23:14 +0000333 if (ciMode)
334 glutInitDisplayMode( GLUT_INDEX | GLUT_DOUBLE );
335 else
336 glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE );
Brian Pauleca1bc92000-03-01 16:23:14 +0000337 glutCreateWindow(argv[0]);
Brian Pauleca1bc92000-03-01 16:23:14 +0000338 Init(ciMode);
Brian Pauleca1bc92000-03-01 16:23:14 +0000339 glutReshapeFunc( Reshape );
340 glutKeyboardFunc( Key );
Brian Pauleca1bc92000-03-01 16:23:14 +0000341 glutDisplayFunc( Display );
Brian Pauleca1bc92000-03-01 16:23:14 +0000342 glutMainLoop();
343 return 0;
344}