blob: 8492c8561d422fec5d1c428b415737019559ec83 [file] [log] [blame]
Gareth Hughes22144ab2001-03-12 00:48:37 +00001/*
2 * Mesa 3-D graphics library
Brian Paula96f8892005-09-13 01:19:29 +00003 * Version: 6.5
Gareth Hughes22144ab2001-03-12 00:48:37 +00004 *
Brian Paula96f8892005-09-13 01:19:29 +00005 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
Brian Paul8ee6ab62009-04-22 15:02:01 -06006 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
Gareth Hughes22144ab2001-03-12 00:48:37 +00007 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000026#include "mtypes.h"
Brian Paul185fbcc2009-06-04 14:26:51 -060027#include "attrib.h"
Brian Paul433f2ab2009-03-02 17:52:30 -070028#include "colormac.h"
Brian Paul4e9676f2002-06-29 19:48:15 +000029#include "context.h"
Brian Paul266fe932009-02-07 11:49:52 -070030#include "hash.h"
Brian Paul3c634522002-10-24 23:57:19 +000031#include "imports.h"
Keith Whitwell23caf202000-11-16 21:05:34 +000032#include "debug.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000033#include "get.h"
Brian Paul185fbcc2009-06-04 14:26:51 -060034#include "pixelstore.h"
35#include "readpix.h"
Brian Paulb98f0f22009-08-04 15:04:37 -060036#include "texgetimage.h"
Brian Paul266fe932009-02-07 11:49:52 -070037#include "texobj.h"
38#include "texformat.h"
39
Keith Whitwell23caf202000-11-16 21:05:34 +000040
Keith Whitwell6dc85572003-07-17 13:43:59 +000041/**
42 * Primitive names
43 */
44const char *_mesa_prim_name[GL_POLYGON+4] = {
45 "GL_POINTS",
46 "GL_LINES",
47 "GL_LINE_LOOP",
48 "GL_LINE_STRIP",
49 "GL_TRIANGLES",
50 "GL_TRIANGLE_STRIP",
51 "GL_TRIANGLE_FAN",
52 "GL_QUADS",
53 "GL_QUAD_STRIP",
54 "GL_POLYGON",
55 "outside begin/end",
56 "inside unkown primitive",
57 "unknown state"
58};
Brian Paul3c634522002-10-24 23:57:19 +000059
60void
61_mesa_print_state( const char *msg, GLuint state )
Keith Whitwell23caf202000-11-16 21:05:34 +000062{
Brian Paul4e9676f2002-06-29 19:48:15 +000063 _mesa_debug(NULL,
Keith Whitwell3d5815f2001-03-29 17:08:26 +000064 "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
Keith Whitwell23caf202000-11-16 21:05:34 +000065 msg,
66 state,
67 (state & _NEW_MODELVIEW) ? "ctx->ModelView, " : "",
68 (state & _NEW_PROJECTION) ? "ctx->Projection, " : "",
69 (state & _NEW_TEXTURE_MATRIX) ? "ctx->TextureMatrix, " : "",
70 (state & _NEW_COLOR_MATRIX) ? "ctx->ColorMatrix, " : "",
71 (state & _NEW_ACCUM) ? "ctx->Accum, " : "",
72 (state & _NEW_COLOR) ? "ctx->Color, " : "",
73 (state & _NEW_DEPTH) ? "ctx->Depth, " : "",
74 (state & _NEW_EVAL) ? "ctx->Eval/EvalMap, " : "",
75 (state & _NEW_FOG) ? "ctx->Fog, " : "",
76 (state & _NEW_HINT) ? "ctx->Hint, " : "",
77 (state & _NEW_LIGHT) ? "ctx->Light, " : "",
78 (state & _NEW_LINE) ? "ctx->Line, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +000079 (state & _NEW_PIXEL) ? "ctx->Pixel, " : "",
80 (state & _NEW_POINT) ? "ctx->Point, " : "",
81 (state & _NEW_POLYGON) ? "ctx->Polygon, " : "",
82 (state & _NEW_POLYGONSTIPPLE) ? "ctx->PolygonStipple, " : "",
83 (state & _NEW_SCISSOR) ? "ctx->Scissor, " : "",
84 (state & _NEW_TEXTURE) ? "ctx->Texture, " : "",
85 (state & _NEW_TRANSFORM) ? "ctx->Transform, " : "",
86 (state & _NEW_VIEWPORT) ? "ctx->Viewport, " : "",
87 (state & _NEW_PACKUNPACK) ? "ctx->Pack/Unpack, " : "",
88 (state & _NEW_ARRAY) ? "ctx->Array, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +000089 (state & _NEW_RENDERMODE) ? "ctx->RenderMode, " : "",
90 (state & _NEW_BUFFERS) ? "ctx->Visual, ctx->DrawBuffer,, " : "");
91}
92
93
Keith Whitwell23caf202000-11-16 21:05:34 +000094
Brian Paul3c634522002-10-24 23:57:19 +000095void
96_mesa_print_tri_caps( const char *name, GLuint flags )
Keith Whitwell23caf202000-11-16 21:05:34 +000097{
Brian Paul4e9676f2002-06-29 19:48:15 +000098 _mesa_debug(NULL,
Daniel Borca885f1072004-11-12 10:23:10 +000099 "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
Keith Whitwell23caf202000-11-16 21:05:34 +0000100 name,
101 flags,
Keith Whitwell23caf202000-11-16 21:05:34 +0000102 (flags & DD_FLATSHADE) ? "flat-shade, " : "",
Brian Paulee403ff2001-03-29 16:50:31 +0000103 (flags & DD_SEPARATE_SPECULAR) ? "separate-specular, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +0000104 (flags & DD_TRI_LIGHT_TWOSIDE) ? "tri-light-twoside, " : "",
Daniel Borca885f1072004-11-12 10:23:10 +0000105 (flags & DD_TRI_TWOSTENCIL) ? "tri-twostencil, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +0000106 (flags & DD_TRI_UNFILLED) ? "tri-unfilled, " : "",
107 (flags & DD_TRI_STIPPLE) ? "tri-stipple, " : "",
108 (flags & DD_TRI_OFFSET) ? "tri-offset, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +0000109 (flags & DD_TRI_SMOOTH) ? "tri-smooth, " : "",
110 (flags & DD_LINE_SMOOTH) ? "line-smooth, " : "",
111 (flags & DD_LINE_STIPPLE) ? "line-stipple, " : "",
112 (flags & DD_LINE_WIDTH) ? "line-wide, " : "",
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000113 (flags & DD_POINT_SMOOTH) ? "point-smooth, " : "",
114 (flags & DD_POINT_SIZE) ? "point-size, " : "",
115 (flags & DD_POINT_ATTEN) ? "point-atten, " : "",
Keith Whitwell3d5815f2001-03-29 17:08:26 +0000116 (flags & DD_TRI_CULL_FRONT_BACK) ? "cull-all, " : ""
Keith Whitwell23caf202000-11-16 21:05:34 +0000117 );
118}
Keith Whitwell6dc85572003-07-17 13:43:59 +0000119
120
Keith Whitwell6dc85572003-07-17 13:43:59 +0000121/**
122 * Print information about this Mesa version and build options.
123 */
124void _mesa_print_info( void )
125{
126 _mesa_debug(NULL, "Mesa GL_VERSION = %s\n",
127 (char *) _mesa_GetString(GL_VERSION));
128 _mesa_debug(NULL, "Mesa GL_RENDERER = %s\n",
129 (char *) _mesa_GetString(GL_RENDERER));
130 _mesa_debug(NULL, "Mesa GL_VENDOR = %s\n",
131 (char *) _mesa_GetString(GL_VENDOR));
132 _mesa_debug(NULL, "Mesa GL_EXTENSIONS = %s\n",
133 (char *) _mesa_GetString(GL_EXTENSIONS));
134#if defined(THREADS)
135 _mesa_debug(NULL, "Mesa thread-safe: YES\n");
136#else
137 _mesa_debug(NULL, "Mesa thread-safe: NO\n");
138#endif
139#if defined(USE_X86_ASM)
140 _mesa_debug(NULL, "Mesa x86-optimized: YES\n");
141#else
142 _mesa_debug(NULL, "Mesa x86-optimized: NO\n");
143#endif
144#if defined(USE_SPARC_ASM)
145 _mesa_debug(NULL, "Mesa sparc-optimized: YES\n");
146#else
147 _mesa_debug(NULL, "Mesa sparc-optimized: NO\n");
148#endif
149}
150
151
152/**
153 * Set the debugging flags.
154 *
155 * \param debug debug string
156 *
157 * If compiled with debugging support then search for keywords in \p debug and
158 * enables the verbose debug output of the respective feature.
159 */
160static void add_debug_flags( const char *debug )
161{
Brian Paul1984aab2005-11-10 05:10:25 +0000162#ifdef DEBUG
Brian Paul131d4252008-11-01 10:57:25 -0600163 struct debug_option {
164 const char *name;
165 GLbitfield flag;
166 };
167 static const struct debug_option debug_opt[] = {
168 { "varray", VERBOSE_VARRAY },
169 { "tex", VERBOSE_TEXTURE },
170 { "imm", VERBOSE_IMMEDIATE },
171 { "pipe", VERBOSE_PIPELINE },
172 { "driver", VERBOSE_DRIVER },
173 { "state", VERBOSE_STATE },
174 { "api", VERBOSE_API },
175 { "list", VERBOSE_DISPLAY_LIST },
176 { "lighting", VERBOSE_LIGHTING },
Brian Paule01a03d2009-02-06 10:21:36 -0700177 { "disassem", VERBOSE_DISASSEM }
Brian Paul131d4252008-11-01 10:57:25 -0600178 };
179 GLuint i;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000180
Brian Paul131d4252008-11-01 10:57:25 -0600181 MESA_VERBOSE = 0x0;
182 for (i = 0; i < Elements(debug_opt); i++) {
183 if (_mesa_strstr(debug, debug_opt[i].name))
184 MESA_VERBOSE |= debug_opt[i].flag;
185 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000186
Keith Whitwell6dc85572003-07-17 13:43:59 +0000187 /* Debug flag:
188 */
189 if (_mesa_strstr(debug, "flush"))
190 MESA_DEBUG_FLAGS |= DEBUG_ALWAYS_FLUSH;
Brian Paul1984aab2005-11-10 05:10:25 +0000191
192#if defined(_FPU_GETCW) && defined(_FPU_SETCW)
193 if (_mesa_strstr(debug, "fpexceptions")) {
194 /* raise FP exceptions */
195 fpu_control_t mask;
196 _FPU_GETCW(mask);
197 mask &= ~(_FPU_MASK_IM | _FPU_MASK_DM | _FPU_MASK_ZM
198 | _FPU_MASK_OM | _FPU_MASK_UM);
199 _FPU_SETCW(mask);
200 }
201#endif
202
Brian Paula6c423d2004-08-25 15:59:48 +0000203#else
204 (void) debug;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000205#endif
206}
207
208
209void
210_mesa_init_debug( GLcontext *ctx )
211{
212 char *c;
213
Keith Whitwell6dc85572003-07-17 13:43:59 +0000214 /* Dither disable */
215 ctx->NoDither = _mesa_getenv("MESA_NO_DITHER") ? GL_TRUE : GL_FALSE;
216 if (ctx->NoDither) {
217 if (_mesa_getenv("MESA_DEBUG")) {
218 _mesa_debug(ctx, "MESA_NO_DITHER set - dithering disabled\n");
219 }
220 ctx->Color.DitherFlag = GL_FALSE;
221 }
222
223 c = _mesa_getenv("MESA_DEBUG");
224 if (c)
225 add_debug_flags(c);
226
227 c = _mesa_getenv("MESA_VERBOSE");
228 if (c)
229 add_debug_flags(c);
230}
231
Brian Paul266fe932009-02-07 11:49:52 -0700232
233/*
234 * Write ppm file
235 */
236static void
237write_ppm(const char *filename, const GLubyte *buffer, int width, int height,
Brian Paulb98f0f22009-08-04 15:04:37 -0600238 int comps, int rcomp, int gcomp, int bcomp, GLboolean invert)
Brian Paul266fe932009-02-07 11:49:52 -0700239{
240 FILE *f = fopen( filename, "w" );
241 if (f) {
Brian Paulb98f0f22009-08-04 15:04:37 -0600242 int x, y;
Brian Paul266fe932009-02-07 11:49:52 -0700243 const GLubyte *ptr = buffer;
244 fprintf(f,"P6\n");
245 fprintf(f,"# ppm-file created by osdemo.c\n");
246 fprintf(f,"%i %i\n", width,height);
247 fprintf(f,"255\n");
248 fclose(f);
249 f = fopen( filename, "ab" ); /* reopen in binary append mode */
Brian Paulb98f0f22009-08-04 15:04:37 -0600250 for (y=0; y < height; y++) {
251 for (x = 0; x < width; x++) {
252 int yy = invert ? (height - 1 - y) : y;
253 int i = (yy * width + x) * comps;
254 fputc(ptr[i+rcomp], f); /* write red */
Brian Paul266fe932009-02-07 11:49:52 -0700255 fputc(ptr[i+gcomp], f); /* write green */
256 fputc(ptr[i+bcomp], f); /* write blue */
257 }
258 }
259 fclose(f);
260 }
261}
262
263
264/**
265 * Write level[0] image to a ppm file.
266 */
267static void
Brian Paulb98f0f22009-08-04 15:04:37 -0600268write_texture_image(struct gl_texture_object *texObj, GLuint face, GLuint level)
Brian Paul266fe932009-02-07 11:49:52 -0700269{
Brian Paulb98f0f22009-08-04 15:04:37 -0600270 struct gl_texture_image *img = texObj->Image[face][level];
271 if (img) {
272 GET_CURRENT_CONTEXT(ctx);
273 struct gl_pixelstore_attrib store;
274 GLubyte *buffer;
Brian Paul266fe932009-02-07 11:49:52 -0700275 char s[100];
276
Brian Paulb98f0f22009-08-04 15:04:37 -0600277 buffer = (GLubyte *) _mesa_malloc(img->Width * img->Height
278 * img->Depth * 4);
Brian Paul266fe932009-02-07 11:49:52 -0700279
Brian Paulb98f0f22009-08-04 15:04:37 -0600280 store = ctx->Pack; /* save */
281 ctx->Pack = ctx->DefaultPacking;
282
283 ctx->Driver.GetTexImage(ctx, texObj->Target, level,
284 GL_RGBA, GL_UNSIGNED_BYTE,
285 buffer, texObj, img);
286
287 /* make filename */
288 _mesa_sprintf(s, "/tmp/teximage%u.ppm", texObj->Name);
289
290 _mesa_printf(" Writing image level %u to %s\n", level, s);
291 write_ppm(s, buffer, img->Width, img->Height, 4, 0, 1, 2, GL_FALSE);
292
293 ctx->Pack = store; /* restore */
294
295 _mesa_free(buffer);
Brian Paul266fe932009-02-07 11:49:52 -0700296 }
297}
298
299
300static GLboolean DumpImages;
301
302
303static void
304dump_texture_cb(GLuint id, void *data, void *userData)
305{
306 struct gl_texture_object *texObj = (struct gl_texture_object *) data;
Brian Paul266fe932009-02-07 11:49:52 -0700307 int i;
Brian Paulb98f0f22009-08-04 15:04:37 -0600308 GLboolean written = GL_FALSE;
José Fonseca8cadf6c2009-02-11 13:50:43 +0000309 (void) userData;
Brian Paul266fe932009-02-07 11:49:52 -0700310
Brian Paulb98f0f22009-08-04 15:04:37 -0600311 _mesa_printf("Texture %u\n", texObj->Name);
312 _mesa_printf(" Target 0x%x\n", texObj->Target);
Brian Paul266fe932009-02-07 11:49:52 -0700313 for (i = 0; i < MAX_TEXTURE_LEVELS; i++) {
314 struct gl_texture_image *texImg = texObj->Image[0][i];
315 if (texImg) {
Brian Paulb98f0f22009-08-04 15:04:37 -0600316 _mesa_printf(" Image %u: %d x %d x %d, format %u at %p\n", i,
317 texImg->Width, texImg->Height, texImg->Depth,
318 texImg->TexFormat->MesaFormat, texImg->Data);
319 if (DumpImages && !written) {
320 GLuint face = 0;
321 write_texture_image(texObj, face, i);
322 written = GL_TRUE;
Brian Paul266fe932009-02-07 11:49:52 -0700323 }
324 }
325 }
326}
327
328
329/**
330 * Print basic info about all texture objext to stdout.
331 * If dumpImages is true, write PPM of level[0] image to a file.
332 */
333void
334_mesa_dump_textures(GLboolean dumpImages)
335{
336 GET_CURRENT_CONTEXT(ctx);
337 DumpImages = dumpImages;
Brian Paul8ee6ab62009-04-22 15:02:01 -0600338 _mesa_HashWalk(ctx->Shared->TexObjects, dump_texture_cb, ctx);
Brian Paul266fe932009-02-07 11:49:52 -0700339}
Brian Paul02f73c432009-05-21 09:12:35 -0600340
341
342void
343_mesa_dump_color_buffer(const char *filename)
344{
345 GET_CURRENT_CONTEXT(ctx);
346 const GLuint w = ctx->DrawBuffer->Width;
347 const GLuint h = ctx->DrawBuffer->Height;
348 GLubyte *buf;
349
350 buf = (GLubyte *) _mesa_malloc(w * h * 4);
351
Brian Paul185fbcc2009-06-04 14:26:51 -0600352 _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT);
353 _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1);
354 _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600355
Brian Paul185fbcc2009-06-04 14:26:51 -0600356 _mesa_ReadPixels(0, 0, w, h, GL_RGBA, GL_UNSIGNED_BYTE, buf);
Brian Paul02f73c432009-05-21 09:12:35 -0600357
358 _mesa_printf("ReadBuffer %p 0x%x DrawBuffer %p 0x%x\n",
359 ctx->ReadBuffer->_ColorReadBuffer,
360 ctx->ReadBuffer->ColorReadBuffer,
361 ctx->DrawBuffer->_ColorDrawBuffers[0],
362 ctx->DrawBuffer->ColorDrawBuffer[0]);
363 _mesa_printf("Writing %d x %d color buffer to %s\n", w, h, filename);
Brian Paulb98f0f22009-08-04 15:04:37 -0600364 write_ppm(filename, buf, w, h, 4, 0, 1, 2, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600365
Brian Paul185fbcc2009-06-04 14:26:51 -0600366 _mesa_PopClientAttrib();
Brian Paul02f73c432009-05-21 09:12:35 -0600367
368 _mesa_free(buf);
369}
370
371
372void
373_mesa_dump_depth_buffer(const char *filename)
374{
375 GET_CURRENT_CONTEXT(ctx);
376 const GLuint w = ctx->DrawBuffer->Width;
377 const GLuint h = ctx->DrawBuffer->Height;
378 GLuint *buf;
379 GLubyte *buf2;
380 GLuint i;
381
382 buf = (GLuint *) _mesa_malloc(w * h * 4); /* 4 bpp */
383 buf2 = (GLubyte *) _mesa_malloc(w * h * 3); /* 3 bpp */
384
Brian Paul185fbcc2009-06-04 14:26:51 -0600385 _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT);
386 _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1);
387 _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600388
Brian Paul185fbcc2009-06-04 14:26:51 -0600389 _mesa_ReadPixels(0, 0, w, h, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, buf);
Brian Paul02f73c432009-05-21 09:12:35 -0600390
391 /* spread 24 bits of Z across R, G, B */
392 for (i = 0; i < w * h; i++) {
393 buf2[i*3+0] = (buf[i] >> 24) & 0xff;
394 buf2[i*3+1] = (buf[i] >> 16) & 0xff;
395 buf2[i*3+2] = (buf[i] >> 8) & 0xff;
396 }
397
398 _mesa_printf("Writing %d x %d depth buffer to %s\n", w, h, filename);
Brian Paulb98f0f22009-08-04 15:04:37 -0600399 write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600400
Brian Paul185fbcc2009-06-04 14:26:51 -0600401 _mesa_PopClientAttrib();
Brian Paul02f73c432009-05-21 09:12:35 -0600402
403 _mesa_free(buf);
404 _mesa_free(buf2);
405}
406
407
408void
409_mesa_dump_stencil_buffer(const char *filename)
410{
411 GET_CURRENT_CONTEXT(ctx);
412 const GLuint w = ctx->DrawBuffer->Width;
413 const GLuint h = ctx->DrawBuffer->Height;
414 GLubyte *buf;
415 GLubyte *buf2;
416 GLuint i;
417
418 buf = (GLubyte *) _mesa_malloc(w * h); /* 1 bpp */
419 buf2 = (GLubyte *) _mesa_malloc(w * h * 3); /* 3 bpp */
420
Brian Paul185fbcc2009-06-04 14:26:51 -0600421 _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT);
422 _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1);
423 _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600424
Brian Paul185fbcc2009-06-04 14:26:51 -0600425 _mesa_ReadPixels(0, 0, w, h, GL_STENCIL_INDEX, GL_UNSIGNED_BYTE, buf);
Brian Paul02f73c432009-05-21 09:12:35 -0600426
427 for (i = 0; i < w * h; i++) {
428 buf2[i*3+0] = buf[i];
429 buf2[i*3+1] = (buf[i] & 127) * 2;
430 buf2[i*3+2] = (buf[i] - 128) * 2;
431 }
432
433 _mesa_printf("Writing %d x %d stencil buffer to %s\n", w, h, filename);
Brian Paulb98f0f22009-08-04 15:04:37 -0600434 write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600435
Brian Paul185fbcc2009-06-04 14:26:51 -0600436 _mesa_PopClientAttrib();
Brian Paul02f73c432009-05-21 09:12:35 -0600437
438 _mesa_free(buf);
439 _mesa_free(buf2);
440}