blob: c340e132bee9f3df00e19ef1d227d24ae4e45f81 [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 Paul8818eae2005-05-18 15:44:13 +0000189#if 0
190 /* you might use this when debugging */
Brian Paul4f6d60e2000-03-23 19:47:25 +0000191 glReadPixels(APosX, APosY, ImgWidth, ImgHeight,
Brian Pauld3d72802000-03-31 01:01:31 +0000192 ReadFormat, ReadType, TempImage);
Brian Paul8818eae2005-05-18 15:44:13 +0000193#else
194 ComplexReadPixels(APosX, APosY, ImgWidth, ImgHeight,
195 ReadFormat, ReadType, TempImage);
196#endif
Brian Paul4f6d60e2000-03-23 19:47:25 +0000197 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000198 glRasterPos2i(BPosX, BPosY);
199 glDisable(GL_DITHER);
200 SetupPixelTransfer(GL_FALSE);
Brian Pauld3d72802000-03-31 01:01:31 +0000201 glDrawPixels(ImgWidth, ImgHeight, ReadFormat, ReadType, TempImage);
Brian Pauleca1bc92000-03-01 16:23:14 +0000202
203 /* do copypixels */
204 glRasterPos2i(CPosX, 5);
205 PrintString("CopyPixels");
206 glRasterPos2i(CPosX, CPosY);
207 glDisable(GL_DITHER);
208 SetupPixelTransfer(ScaleAndBias);
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000209 glCopyPixels(APosX, APosY, ImgWidth, ImgHeight, GL_COLOR);
Brian Pauleca1bc92000-03-01 16:23:14 +0000210
211 if (!DrawFront)
212 glutSwapBuffers();
Alan Hourihane056b3582002-05-02 09:15:22 +0000213 else
214 glFinish();
Brian Pauleca1bc92000-03-01 16:23:14 +0000215}
216
217
Brian Paul4f6d60e2000-03-23 19:47:25 +0000218static void
219Reshape( int width, int height )
Brian Pauleca1bc92000-03-01 16:23:14 +0000220{
221 glViewport( 0, 0, width, height );
222 glMatrixMode( GL_PROJECTION );
223 glLoadIdentity();
224 glOrtho( 0.0, width, 0.0, height, -1.0, 1.0 );
225 glMatrixMode( GL_MODELVIEW );
226 glLoadIdentity();
227}
228
229
Brian Paul4f6d60e2000-03-23 19:47:25 +0000230static void
231Key( unsigned char key, int x, int y )
Brian Pauleca1bc92000-03-01 16:23:14 +0000232{
233 (void) x;
234 (void) y;
235 switch (key) {
236 case 'b':
Brian Paul4f6d60e2000-03-23 19:47:25 +0000237 Benchmark = GL_TRUE;
238 break;
239 case 's':
Brian Pauleca1bc92000-03-01 16:23:14 +0000240 ScaleAndBias = !ScaleAndBias;
241 break;
242 case 'f':
243 DrawFront = !DrawFront;
Brian Paul4f6d60e2000-03-23 19:47:25 +0000244 if (DrawFront) {
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000245 glDrawBuffer(GL_FRONT);
246 glReadBuffer(GL_FRONT);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000247 }
248 else {
Alan Hourihanea5cdf992002-05-02 09:17:59 +0000249 glDrawBuffer(GL_BACK);
250 glReadBuffer(GL_BACK);
Brian Paul4f6d60e2000-03-23 19:47:25 +0000251 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000252 printf("glDrawBuffer(%s)\n", DrawFront ? "GL_FRONT" : "GL_BACK");
253 break;
254 case 27:
255 exit(0);
256 break;
257 }
258 glutPostRedisplay();
259}
260
261
Brian Pauleca1bc92000-03-01 16:23:14 +0000262static void
263Init( GLboolean ciMode )
264{
Ian Romanick33899b72004-10-16 01:16:54 +0000265 GLboolean have_read_format = GL_FALSE;
266
Brian Pauleca1bc92000-03-01 16:23:14 +0000267 printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
268 printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
269
270 Image = LoadRGBImage( IMAGE_FILE, &ImgWidth, &ImgHeight, &ImgFormat );
271 if (!Image) {
272 printf("Couldn't read %s\n", IMAGE_FILE);
273 exit(0);
274 }
275
276 if (ciMode) {
277 /* Convert RGB image to grayscale */
Brian Paulf02a5f62002-07-12 15:54:01 +0000278 GLubyte *indexImage = (GLubyte *) malloc( ImgWidth * ImgHeight );
Brian Pauleca1bc92000-03-01 16:23:14 +0000279 GLint i;
280 for (i=0; i<ImgWidth*ImgHeight; i++) {
281 int gray = Image[i*3] + Image[i*3+1] + Image[i*3+2];
282 indexImage[i] = gray / 3;
283 }
284 free(Image);
285 Image = indexImage;
286 ImgFormat = GL_COLOR_INDEX;
287
288 for (i=0;i<255;i++) {
289 float g = i / 255.0;
290 glutSetColor(i, g, g, g);
291 }
292 }
293
Ian Romanick33899b72004-10-16 01:16:54 +0000294#ifdef GL_OES_read_format
295 if ( glutExtensionSupported( "GL_OES_read_format" ) ) {
Brian Paul4fe34f32004-11-26 13:43:17 +0000296 glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE_OES, (GLint *) &ReadType);
297 glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES, (GLint *) &ReadFormat);
Ian Romanick33899b72004-10-16 01:16:54 +0000298
299 have_read_format = GL_TRUE;
300 }
301#endif
302
303 printf( "GL_OES_read_format %ssupported. "
304 "Using type / format = 0x%04x / 0x%04x\n",
305 (have_read_format) ? "" : "not ",
306 ReadType, ReadFormat );
307
Brian Pauleca1bc92000-03-01 16:23:14 +0000308 printf("Loaded %d by %d image\n", ImgWidth, ImgHeight );
309
Brian Pauleca1bc92000-03-01 16:23:14 +0000310 glPixelStorei(GL_UNPACK_ROW_LENGTH, ImgWidth);
Brian Pauleca1bc92000-03-01 16:23:14 +0000311 glPixelStorei(GL_PACK_ROW_LENGTH, ImgWidth);
312
313 Reset();
314
Brian Paul8818eae2005-05-18 15:44:13 +0000315 /* allocate an extra 1KB in case we're tinkering with pack alignment */
316 TempImage = (GLubyte *) malloc(ImgWidth * ImgHeight * 4 * sizeof(GLubyte)
317 + 1000);
Brian Pauleca1bc92000-03-01 16:23:14 +0000318 assert(TempImage);
319}
320
321
Brian Paul4f6d60e2000-03-23 19:47:25 +0000322int
323main( int argc, char *argv[] )
Brian Pauleca1bc92000-03-01 16:23:14 +0000324{
325 GLboolean ciMode = GL_FALSE;
Brian Pauleca1bc92000-03-01 16:23:14 +0000326 if (argc > 1 && strcmp(argv[1], "-ci")==0) {
327 ciMode = GL_TRUE;
328 }
Brian Pauleca1bc92000-03-01 16:23:14 +0000329 glutInit( &argc, argv );
330 glutInitWindowPosition( 0, 0 );
331 glutInitWindowSize( 750, 250 );
Brian Pauleca1bc92000-03-01 16:23:14 +0000332 if (ciMode)
333 glutInitDisplayMode( GLUT_INDEX | GLUT_DOUBLE );
334 else
335 glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE );
Brian Pauleca1bc92000-03-01 16:23:14 +0000336 glutCreateWindow(argv[0]);
Brian Pauleca1bc92000-03-01 16:23:14 +0000337 Init(ciMode);
Brian Pauleca1bc92000-03-01 16:23:14 +0000338 glutReshapeFunc( Reshape );
339 glutKeyboardFunc( Key );
Brian Pauleca1bc92000-03-01 16:23:14 +0000340 glutDisplayFunc( Display );
Brian Pauleca1bc92000-03-01 16:23:14 +0000341 glutMainLoop();
342 return 0;
343}