blob: 8c3f783086117cc152c130a9ba2201f3699ecbfd [file] [log] [blame]
Gareth Hughes22144ab2001-03-12 00:48:37 +00001/*
2 * Mesa 3-D graphics library
Gareth Hughes22144ab2001-03-12 00:48:37 +00003 *
Brian Paula96f8892005-09-13 01:19:29 +00004 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
Brian Paul8ee6ab62009-04-22 15:02:01 -06005 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
Gareth Hughes22144ab2001-03-12 00:48:37 +00006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
Kenneth Graunke3d8d5b22013-04-21 13:46:48 -070020 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
Gareth Hughes22144ab2001-03-12 00:48:37 +000024 */
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 Paul2cc5a0e2009-10-20 16:13:08 -060029#include "enums.h"
Brian Paul1f196b72009-10-28 21:24:11 -060030#include "formats.h"
Brian Paul266fe932009-02-07 11:49:52 -070031#include "hash.h"
Brian Paul3c634522002-10-24 23:57:19 +000032#include "imports.h"
Keith Whitwell23caf202000-11-16 21:05:34 +000033#include "debug.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000034#include "get.h"
Brian Paul185fbcc2009-06-04 14:26:51 -060035#include "pixelstore.h"
36#include "readpix.h"
Brian Paul266fe932009-02-07 11:49:52 -070037#include "texobj.h"
Brian Paul266fe932009-02-07 11:49:52 -070038
Keith Whitwell23caf202000-11-16 21:05:34 +000039
Brian Paul403181b2009-10-27 13:59:32 -060040static const char *
41tex_target_name(GLenum tgt)
42{
43 static const struct {
44 GLenum target;
45 const char *name;
46 } tex_targets[] = {
47 { GL_TEXTURE_1D, "GL_TEXTURE_1D" },
48 { GL_TEXTURE_2D, "GL_TEXTURE_2D" },
49 { GL_TEXTURE_3D, "GL_TEXTURE_3D" },
50 { GL_TEXTURE_CUBE_MAP, "GL_TEXTURE_CUBE_MAP" },
51 { GL_TEXTURE_RECTANGLE, "GL_TEXTURE_RECTANGLE" },
52 { GL_TEXTURE_1D_ARRAY_EXT, "GL_TEXTURE_1D_ARRAY" },
Chia-I Wu0c87f162011-10-23 18:52:38 +080053 { GL_TEXTURE_2D_ARRAY_EXT, "GL_TEXTURE_2D_ARRAY" },
54 { GL_TEXTURE_EXTERNAL_OES, "GL_TEXTURE_EXTERNAL_OES" }
Brian Paul403181b2009-10-27 13:59:32 -060055 };
56 GLuint i;
57 for (i = 0; i < Elements(tex_targets); i++) {
58 if (tex_targets[i].target == tgt)
59 return tex_targets[i].name;
60 }
61 return "UNKNOWN TEX TARGET";
62}
63
64
Brian Paul3c634522002-10-24 23:57:19 +000065void
66_mesa_print_state( const char *msg, GLuint state )
Keith Whitwell23caf202000-11-16 21:05:34 +000067{
Brian Paul4e9676f2002-06-29 19:48:15 +000068 _mesa_debug(NULL,
Marek Olšákd883d002013-04-15 02:23:37 +020069 "%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\n",
Keith Whitwell23caf202000-11-16 21:05:34 +000070 msg,
71 state,
72 (state & _NEW_MODELVIEW) ? "ctx->ModelView, " : "",
73 (state & _NEW_PROJECTION) ? "ctx->Projection, " : "",
74 (state & _NEW_TEXTURE_MATRIX) ? "ctx->TextureMatrix, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +000075 (state & _NEW_COLOR) ? "ctx->Color, " : "",
76 (state & _NEW_DEPTH) ? "ctx->Depth, " : "",
77 (state & _NEW_EVAL) ? "ctx->Eval/EvalMap, " : "",
78 (state & _NEW_FOG) ? "ctx->Fog, " : "",
79 (state & _NEW_HINT) ? "ctx->Hint, " : "",
80 (state & _NEW_LIGHT) ? "ctx->Light, " : "",
81 (state & _NEW_LINE) ? "ctx->Line, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +000082 (state & _NEW_PIXEL) ? "ctx->Pixel, " : "",
83 (state & _NEW_POINT) ? "ctx->Point, " : "",
84 (state & _NEW_POLYGON) ? "ctx->Polygon, " : "",
85 (state & _NEW_POLYGONSTIPPLE) ? "ctx->PolygonStipple, " : "",
86 (state & _NEW_SCISSOR) ? "ctx->Scissor, " : "",
Kristian Høgsberg57edf6b2010-03-23 12:07:45 -040087 (state & _NEW_STENCIL) ? "ctx->Stencil, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +000088 (state & _NEW_TEXTURE) ? "ctx->Texture, " : "",
89 (state & _NEW_TRANSFORM) ? "ctx->Transform, " : "",
90 (state & _NEW_VIEWPORT) ? "ctx->Viewport, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +000091 (state & _NEW_ARRAY) ? "ctx->Array, " : "",
Keith Whitwell23caf202000-11-16 21:05:34 +000092 (state & _NEW_RENDERMODE) ? "ctx->RenderMode, " : "",
93 (state & _NEW_BUFFERS) ? "ctx->Visual, ctx->DrawBuffer,, " : "");
94}
95
96
Keith Whitwell23caf202000-11-16 21:05:34 +000097
Keith Whitwell6dc85572003-07-17 13:43:59 +000098/**
99 * Print information about this Mesa version and build options.
100 */
101void _mesa_print_info( void )
102{
103 _mesa_debug(NULL, "Mesa GL_VERSION = %s\n",
104 (char *) _mesa_GetString(GL_VERSION));
105 _mesa_debug(NULL, "Mesa GL_RENDERER = %s\n",
106 (char *) _mesa_GetString(GL_RENDERER));
107 _mesa_debug(NULL, "Mesa GL_VENDOR = %s\n",
108 (char *) _mesa_GetString(GL_VENDOR));
109 _mesa_debug(NULL, "Mesa GL_EXTENSIONS = %s\n",
110 (char *) _mesa_GetString(GL_EXTENSIONS));
111#if defined(THREADS)
112 _mesa_debug(NULL, "Mesa thread-safe: YES\n");
113#else
114 _mesa_debug(NULL, "Mesa thread-safe: NO\n");
115#endif
116#if defined(USE_X86_ASM)
117 _mesa_debug(NULL, "Mesa x86-optimized: YES\n");
118#else
119 _mesa_debug(NULL, "Mesa x86-optimized: NO\n");
120#endif
121#if defined(USE_SPARC_ASM)
122 _mesa_debug(NULL, "Mesa sparc-optimized: YES\n");
123#else
124 _mesa_debug(NULL, "Mesa sparc-optimized: NO\n");
125#endif
126}
127
128
129/**
Brian Paul88cd4712012-05-09 12:07:28 -0600130 * Set verbose logging flags. When these flags are set, GL API calls
131 * in the various categories will be printed to stderr.
132 * \param str a comma-separated list of keywords
Keith Whitwell6dc85572003-07-17 13:43:59 +0000133 */
Brian Paul88cd4712012-05-09 12:07:28 -0600134static void
135set_verbose_flags(const char *str)
Keith Whitwell6dc85572003-07-17 13:43:59 +0000136{
Brian Paul1984aab2005-11-10 05:10:25 +0000137#ifdef DEBUG
Brian Paul88cd4712012-05-09 12:07:28 -0600138 struct option {
Brian Paul131d4252008-11-01 10:57:25 -0600139 const char *name;
140 GLbitfield flag;
141 };
Brian Paul88cd4712012-05-09 12:07:28 -0600142 static const struct option opts[] = {
Brian Paul131d4252008-11-01 10:57:25 -0600143 { "varray", VERBOSE_VARRAY },
144 { "tex", VERBOSE_TEXTURE },
Brian Pauld9099f82009-10-14 15:46:25 -0600145 { "mat", VERBOSE_MATERIAL },
Brian Paul131d4252008-11-01 10:57:25 -0600146 { "pipe", VERBOSE_PIPELINE },
147 { "driver", VERBOSE_DRIVER },
148 { "state", VERBOSE_STATE },
149 { "api", VERBOSE_API },
150 { "list", VERBOSE_DISPLAY_LIST },
151 { "lighting", VERBOSE_LIGHTING },
Brian Paulade1cc92009-10-14 16:23:22 -0600152 { "disassem", VERBOSE_DISASSEM },
Brian Paul2fd5cb72009-10-14 16:24:35 -0600153 { "draw", VERBOSE_DRAW },
Kristian Høgsberg042a3332010-09-09 18:59:49 -0400154 { "swap", VERBOSE_SWAPBUFFERS }
Brian Paul131d4252008-11-01 10:57:25 -0600155 };
156 GLuint i;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000157
Brian Paul88cd4712012-05-09 12:07:28 -0600158 if (!str)
159 return;
160
Brian Paul131d4252008-11-01 10:57:25 -0600161 MESA_VERBOSE = 0x0;
Brian Paul88cd4712012-05-09 12:07:28 -0600162 for (i = 0; i < Elements(opts); i++) {
163 if (strstr(str, opts[i].name) || strcmp(str, "all") == 0)
164 MESA_VERBOSE |= opts[i].flag;
Brian Paul131d4252008-11-01 10:57:25 -0600165 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000166#endif
167}
168
169
Brian Paul88cd4712012-05-09 12:07:28 -0600170/**
171 * Set debugging flags. When these flags are set, Mesa will do additional
172 * debug checks or actions.
173 * \param str a comma-separated list of keywords
174 */
175static void
176set_debug_flags(const char *str)
177{
178#ifdef DEBUG
179 struct option {
180 const char *name;
181 GLbitfield flag;
182 };
183 static const struct option opts[] = {
Brian Paulda35c2b2012-05-09 13:25:00 -0600184 { "silent", DEBUG_SILENT }, /* turn off debug messages */
Brian Paul93bcf782012-05-09 12:09:21 -0600185 { "flush", DEBUG_ALWAYS_FLUSH }, /* flush after each drawing command */
186 { "incomplete_tex", DEBUG_INCOMPLETE_TEXTURE },
187 { "incomplete_fbo", DEBUG_INCOMPLETE_FBO }
Brian Paul88cd4712012-05-09 12:07:28 -0600188 };
189 GLuint i;
190
191 if (!str)
192 return;
193
194 MESA_DEBUG_FLAGS = 0x0;
195 for (i = 0; i < Elements(opts); i++) {
196 if (strstr(str, opts[i].name))
197 MESA_DEBUG_FLAGS |= opts[i].flag;
198 }
199#endif
200}
201
202
203/**
204 * Initialize debugging variables from env vars.
205 */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000206void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400207_mesa_init_debug( struct gl_context *ctx )
Keith Whitwell6dc85572003-07-17 13:43:59 +0000208{
Brian Paul88cd4712012-05-09 12:07:28 -0600209 set_debug_flags(_mesa_getenv("MESA_DEBUG"));
210 set_verbose_flags(_mesa_getenv("MESA_VERBOSE"));
Keith Whitwell6dc85572003-07-17 13:43:59 +0000211}
212
Brian Paul266fe932009-02-07 11:49:52 -0700213
214/*
215 * Write ppm file
216 */
217static void
218write_ppm(const char *filename, const GLubyte *buffer, int width, int height,
Brian Paulb98f0f22009-08-04 15:04:37 -0600219 int comps, int rcomp, int gcomp, int bcomp, GLboolean invert)
Brian Paul266fe932009-02-07 11:49:52 -0700220{
221 FILE *f = fopen( filename, "w" );
222 if (f) {
Brian Paulb98f0f22009-08-04 15:04:37 -0600223 int x, y;
Brian Paul266fe932009-02-07 11:49:52 -0700224 const GLubyte *ptr = buffer;
225 fprintf(f,"P6\n");
226 fprintf(f,"# ppm-file created by osdemo.c\n");
227 fprintf(f,"%i %i\n", width,height);
228 fprintf(f,"255\n");
229 fclose(f);
230 f = fopen( filename, "ab" ); /* reopen in binary append mode */
Brian Paulb98f0f22009-08-04 15:04:37 -0600231 for (y=0; y < height; y++) {
232 for (x = 0; x < width; x++) {
233 int yy = invert ? (height - 1 - y) : y;
234 int i = (yy * width + x) * comps;
235 fputc(ptr[i+rcomp], f); /* write red */
Brian Paul266fe932009-02-07 11:49:52 -0700236 fputc(ptr[i+gcomp], f); /* write green */
237 fputc(ptr[i+bcomp], f); /* write blue */
238 }
239 }
240 fclose(f);
241 }
Brian Paule1a9ef22011-03-24 13:38:04 -0600242 else {
243 fprintf(stderr, "Unable to create %s in write_ppm()\n", filename);
244 }
Brian Paul266fe932009-02-07 11:49:52 -0700245}
246
247
248/**
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600249 * Write a texture image to a ppm file.
250 * \param face cube face in [0,5]
251 * \param level mipmap level
Brian Paul266fe932009-02-07 11:49:52 -0700252 */
253static void
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600254write_texture_image(struct gl_texture_object *texObj,
255 GLuint face, GLuint level)
Brian Paul266fe932009-02-07 11:49:52 -0700256{
Brian Paulb98f0f22009-08-04 15:04:37 -0600257 struct gl_texture_image *img = texObj->Image[face][level];
258 if (img) {
259 GET_CURRENT_CONTEXT(ctx);
260 struct gl_pixelstore_attrib store;
261 GLubyte *buffer;
Brian Paul266fe932009-02-07 11:49:52 -0700262 char s[100];
263
Matt Turner2b7a9722012-09-03 19:44:00 -0700264 buffer = malloc(img->Width * img->Height
Brian Paulb98f0f22009-08-04 15:04:37 -0600265 * img->Depth * 4);
Brian Paul266fe932009-02-07 11:49:52 -0700266
Brian Paulb98f0f22009-08-04 15:04:37 -0600267 store = ctx->Pack; /* save */
268 ctx->Pack = ctx->DefaultPacking;
269
Brian Paul4368a652011-09-30 08:15:30 -0600270 ctx->Driver.GetTexImage(ctx, GL_RGBA, GL_UNSIGNED_BYTE, buffer, img);
Brian Paulb98f0f22009-08-04 15:04:37 -0600271
272 /* make filename */
Vinson Leefc1be4a2010-05-02 01:03:59 -0700273 _mesa_snprintf(s, sizeof(s), "/tmp/tex%u.l%u.f%u.ppm", texObj->Name, level, face);
Brian Paulb98f0f22009-08-04 15:04:37 -0600274
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500275 printf(" Writing image level %u to %s\n", level, s);
Brian Paulb98f0f22009-08-04 15:04:37 -0600276 write_ppm(s, buffer, img->Width, img->Height, 4, 0, 1, 2, GL_FALSE);
277
278 ctx->Pack = store; /* restore */
279
Kristian Høgsberg32f2fd12010-02-19 11:58:49 -0500280 free(buffer);
Brian Paul266fe932009-02-07 11:49:52 -0700281 }
282}
283
284
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600285/**
286 * Write renderbuffer image to a ppm file.
287 */
Brian Paule162f282011-02-15 10:26:56 -0700288void
289_mesa_write_renderbuffer_image(const struct gl_renderbuffer *rb)
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600290{
291 GET_CURRENT_CONTEXT(ctx);
292 GLubyte *buffer;
293 char s[100];
294 GLenum format, type;
295
296 if (rb->_BaseFormat == GL_RGB ||
297 rb->_BaseFormat == GL_RGBA) {
298 format = GL_RGBA;
299 type = GL_UNSIGNED_BYTE;
300 }
301 else if (rb->_BaseFormat == GL_DEPTH_STENCIL) {
302 format = GL_DEPTH_STENCIL;
303 type = GL_UNSIGNED_INT_24_8;
304 }
305 else {
Brian Paule162f282011-02-15 10:26:56 -0700306 _mesa_debug(NULL,
307 "Unsupported BaseFormat 0x%x in "
308 "_mesa_write_renderbuffer_image()\n",
309 rb->_BaseFormat);
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600310 return;
311 }
312
Matt Turner2b7a9722012-09-03 19:44:00 -0700313 buffer = malloc(rb->Width * rb->Height * 4);
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600314
315 ctx->Driver.ReadPixels(ctx, 0, 0, rb->Width, rb->Height,
316 format, type, &ctx->DefaultPacking, buffer);
317
318 /* make filename */
Vinson Leefc1be4a2010-05-02 01:03:59 -0700319 _mesa_snprintf(s, sizeof(s), "/tmp/renderbuffer%u.ppm", rb->Name);
Brian Paule162f282011-02-15 10:26:56 -0700320 _mesa_snprintf(s, sizeof(s), "C:\\renderbuffer%u.ppm", rb->Name);
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600321
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500322 printf(" Writing renderbuffer image to %s\n", s);
Brian Paule162f282011-02-15 10:26:56 -0700323
324 _mesa_debug(NULL, " Writing renderbuffer image to %s\n", s);
325
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600326 write_ppm(s, buffer, rb->Width, rb->Height, 4, 0, 1, 2, GL_TRUE);
327
Kristian Høgsberg32f2fd12010-02-19 11:58:49 -0500328 free(buffer);
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600329}
330
331
Brian Paul403181b2009-10-27 13:59:32 -0600332/** How many texture images (mipmap levels, faces) to write to files */
333#define WRITE_NONE 0
334#define WRITE_ONE 1
335#define WRITE_ALL 2
336
337static GLuint WriteImages;
Brian Paul266fe932009-02-07 11:49:52 -0700338
339
340static void
Brian Paul403181b2009-10-27 13:59:32 -0600341dump_texture(struct gl_texture_object *texObj, GLuint writeImages)
Brian Paul266fe932009-02-07 11:49:52 -0700342{
Brian Paul403181b2009-10-27 13:59:32 -0600343 const GLuint numFaces = texObj->Target == GL_TEXTURE_CUBE_MAP ? 6 : 1;
Brian Paulb98f0f22009-08-04 15:04:37 -0600344 GLboolean written = GL_FALSE;
Brian Paul403181b2009-10-27 13:59:32 -0600345 GLuint i, j;
Brian Paul266fe932009-02-07 11:49:52 -0700346
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500347 printf("Texture %u\n", texObj->Name);
348 printf(" Target %s\n", tex_target_name(texObj->Target));
Brian Paul266fe932009-02-07 11:49:52 -0700349 for (i = 0; i < MAX_TEXTURE_LEVELS; i++) {
Brian Paul403181b2009-10-27 13:59:32 -0600350 for (j = 0; j < numFaces; j++) {
351 struct gl_texture_image *texImg = texObj->Image[j][i];
352 if (texImg) {
Brian Paulb8950c22011-07-31 20:14:54 -0700353 printf(" Face %u level %u: %d x %d x %d, format %s\n",
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500354 j, i,
355 texImg->Width, texImg->Height, texImg->Depth,
Brian Paulb8950c22011-07-31 20:14:54 -0700356 _mesa_get_format_name(texImg->TexFormat));
Brian Paul403181b2009-10-27 13:59:32 -0600357 if (writeImages == WRITE_ALL ||
358 (writeImages == WRITE_ONE && !written)) {
359 write_texture_image(texObj, j, i);
360 written = GL_TRUE;
361 }
Brian Paul266fe932009-02-07 11:49:52 -0700362 }
363 }
364 }
365}
366
367
368/**
Brian Paul488e67b2009-10-22 09:37:22 -0600369 * Dump a single texture.
370 */
371void
Brian Paul403181b2009-10-27 13:59:32 -0600372_mesa_dump_texture(GLuint texture, GLuint writeImages)
Brian Paul488e67b2009-10-22 09:37:22 -0600373{
374 GET_CURRENT_CONTEXT(ctx);
375 struct gl_texture_object *texObj = _mesa_lookup_texture(ctx, texture);
376 if (texObj) {
Brian Paul403181b2009-10-27 13:59:32 -0600377 dump_texture(texObj, writeImages);
Brian Paul488e67b2009-10-22 09:37:22 -0600378 }
379}
380
381
382static void
383dump_texture_cb(GLuint id, void *data, void *userData)
384{
385 struct gl_texture_object *texObj = (struct gl_texture_object *) data;
386 (void) userData;
Brian Paul403181b2009-10-27 13:59:32 -0600387 dump_texture(texObj, WriteImages);
Brian Paul488e67b2009-10-22 09:37:22 -0600388}
389
390
391/**
Brian Paul266fe932009-02-07 11:49:52 -0700392 * Print basic info about all texture objext to stdout.
393 * If dumpImages is true, write PPM of level[0] image to a file.
394 */
395void
Brian Paul403181b2009-10-27 13:59:32 -0600396_mesa_dump_textures(GLuint writeImages)
Brian Paul266fe932009-02-07 11:49:52 -0700397{
398 GET_CURRENT_CONTEXT(ctx);
Brian Paul403181b2009-10-27 13:59:32 -0600399 WriteImages = writeImages;
Brian Paul8ee6ab62009-04-22 15:02:01 -0600400 _mesa_HashWalk(ctx->Shared->TexObjects, dump_texture_cb, ctx);
Brian Paul266fe932009-02-07 11:49:52 -0700401}
Brian Paul02f73c432009-05-21 09:12:35 -0600402
403
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600404static void
Brian Paul403181b2009-10-27 13:59:32 -0600405dump_renderbuffer(const struct gl_renderbuffer *rb, GLboolean writeImage)
406{
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500407 printf("Renderbuffer %u: %u x %u IntFormat = %s\n",
408 rb->Name, rb->Width, rb->Height,
409 _mesa_lookup_enum_by_nr(rb->InternalFormat));
Brian Paul403181b2009-10-27 13:59:32 -0600410 if (writeImage) {
Brian Paule162f282011-02-15 10:26:56 -0700411 _mesa_write_renderbuffer_image(rb);
Brian Paul403181b2009-10-27 13:59:32 -0600412 }
413}
414
415
416static void
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600417dump_renderbuffer_cb(GLuint id, void *data, void *userData)
418{
419 const struct gl_renderbuffer *rb = (const struct gl_renderbuffer *) data;
420 (void) userData;
Brian Paul403181b2009-10-27 13:59:32 -0600421 dump_renderbuffer(rb, WriteImages);
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600422}
423
424
425/**
426 * Print basic info about all renderbuffers to stdout.
427 * If dumpImages is true, write PPM of level[0] image to a file.
428 */
429void
Brian Paul403181b2009-10-27 13:59:32 -0600430_mesa_dump_renderbuffers(GLboolean writeImages)
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600431{
432 GET_CURRENT_CONTEXT(ctx);
Brian Paul403181b2009-10-27 13:59:32 -0600433 WriteImages = writeImages;
Brian Paul2cc5a0e2009-10-20 16:13:08 -0600434 _mesa_HashWalk(ctx->Shared->RenderBuffers, dump_renderbuffer_cb, ctx);
435}
436
437
438
Brian Paul02f73c432009-05-21 09:12:35 -0600439void
440_mesa_dump_color_buffer(const char *filename)
441{
442 GET_CURRENT_CONTEXT(ctx);
443 const GLuint w = ctx->DrawBuffer->Width;
444 const GLuint h = ctx->DrawBuffer->Height;
445 GLubyte *buf;
446
Matt Turner2b7a9722012-09-03 19:44:00 -0700447 buf = malloc(w * h * 4);
Brian Paul02f73c432009-05-21 09:12:35 -0600448
Brian Paul185fbcc2009-06-04 14:26:51 -0600449 _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT);
450 _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1);
451 _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600452
Brian Paul185fbcc2009-06-04 14:26:51 -0600453 _mesa_ReadPixels(0, 0, w, h, GL_RGBA, GL_UNSIGNED_BYTE, buf);
Brian Paul02f73c432009-05-21 09:12:35 -0600454
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500455 printf("ReadBuffer %p 0x%x DrawBuffer %p 0x%x\n",
Brian Paul8de5a292010-02-19 12:45:49 -0700456 (void *) ctx->ReadBuffer->_ColorReadBuffer,
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500457 ctx->ReadBuffer->ColorReadBuffer,
Brian Paul8de5a292010-02-19 12:45:49 -0700458 (void *) ctx->DrawBuffer->_ColorDrawBuffers[0],
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500459 ctx->DrawBuffer->ColorDrawBuffer[0]);
460 printf("Writing %d x %d color buffer to %s\n", w, h, filename);
Brian Paulb98f0f22009-08-04 15:04:37 -0600461 write_ppm(filename, buf, w, h, 4, 0, 1, 2, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600462
Brian Paul185fbcc2009-06-04 14:26:51 -0600463 _mesa_PopClientAttrib();
Brian Paul02f73c432009-05-21 09:12:35 -0600464
Kristian Høgsberg32f2fd12010-02-19 11:58:49 -0500465 free(buf);
Brian Paul02f73c432009-05-21 09:12:35 -0600466}
467
468
469void
470_mesa_dump_depth_buffer(const char *filename)
471{
472 GET_CURRENT_CONTEXT(ctx);
473 const GLuint w = ctx->DrawBuffer->Width;
474 const GLuint h = ctx->DrawBuffer->Height;
475 GLuint *buf;
476 GLubyte *buf2;
477 GLuint i;
478
Matt Turner2b7a9722012-09-03 19:44:00 -0700479 buf = malloc(w * h * 4); /* 4 bpp */
480 buf2 = malloc(w * h * 3); /* 3 bpp */
Brian Paul02f73c432009-05-21 09:12:35 -0600481
Brian Paul185fbcc2009-06-04 14:26:51 -0600482 _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT);
483 _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1);
484 _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600485
Brian Paul185fbcc2009-06-04 14:26:51 -0600486 _mesa_ReadPixels(0, 0, w, h, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, buf);
Brian Paul02f73c432009-05-21 09:12:35 -0600487
488 /* spread 24 bits of Z across R, G, B */
489 for (i = 0; i < w * h; i++) {
490 buf2[i*3+0] = (buf[i] >> 24) & 0xff;
491 buf2[i*3+1] = (buf[i] >> 16) & 0xff;
492 buf2[i*3+2] = (buf[i] >> 8) & 0xff;
493 }
494
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500495 printf("Writing %d x %d depth buffer to %s\n", w, h, filename);
Brian Paulb98f0f22009-08-04 15:04:37 -0600496 write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600497
Brian Paul185fbcc2009-06-04 14:26:51 -0600498 _mesa_PopClientAttrib();
Brian Paul02f73c432009-05-21 09:12:35 -0600499
Kristian Høgsberg32f2fd12010-02-19 11:58:49 -0500500 free(buf);
501 free(buf2);
Brian Paul02f73c432009-05-21 09:12:35 -0600502}
503
504
505void
506_mesa_dump_stencil_buffer(const char *filename)
507{
508 GET_CURRENT_CONTEXT(ctx);
509 const GLuint w = ctx->DrawBuffer->Width;
510 const GLuint h = ctx->DrawBuffer->Height;
511 GLubyte *buf;
512 GLubyte *buf2;
513 GLuint i;
514
Matt Turner2b7a9722012-09-03 19:44:00 -0700515 buf = malloc(w * h); /* 1 bpp */
516 buf2 = malloc(w * h * 3); /* 3 bpp */
Brian Paul02f73c432009-05-21 09:12:35 -0600517
Brian Paul185fbcc2009-06-04 14:26:51 -0600518 _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT);
519 _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1);
520 _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600521
Brian Paul185fbcc2009-06-04 14:26:51 -0600522 _mesa_ReadPixels(0, 0, w, h, GL_STENCIL_INDEX, GL_UNSIGNED_BYTE, buf);
Brian Paul02f73c432009-05-21 09:12:35 -0600523
524 for (i = 0; i < w * h; i++) {
525 buf2[i*3+0] = buf[i];
526 buf2[i*3+1] = (buf[i] & 127) * 2;
527 buf2[i*3+2] = (buf[i] - 128) * 2;
528 }
529
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500530 printf("Writing %d x %d stencil buffer to %s\n", w, h, filename);
Brian Paulb98f0f22009-08-04 15:04:37 -0600531 write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE);
Brian Paul02f73c432009-05-21 09:12:35 -0600532
Brian Paul185fbcc2009-06-04 14:26:51 -0600533 _mesa_PopClientAttrib();
Brian Paul02f73c432009-05-21 09:12:35 -0600534
Kristian Høgsberg32f2fd12010-02-19 11:58:49 -0500535 free(buf);
536 free(buf2);
Brian Paul02f73c432009-05-21 09:12:35 -0600537}
Brian Paul67df4fb2009-10-29 09:25:16 -0600538
539
Brian Paule1a9ef22011-03-24 13:38:04 -0600540void
541_mesa_dump_image(const char *filename, const void *image, GLuint w, GLuint h,
542 GLenum format, GLenum type)
543{
544 GLboolean invert = GL_TRUE;
545
546 if (format == GL_RGBA && type == GL_UNSIGNED_BYTE) {
547 write_ppm(filename, image, w, h, 4, 0, 1, 2, invert);
548 }
549 else if (format == GL_BGRA && type == GL_UNSIGNED_BYTE) {
550 write_ppm(filename, image, w, h, 4, 2, 1, 0, invert);
551 }
552 else if (format == GL_LUMINANCE_ALPHA && type == GL_UNSIGNED_BYTE) {
553 write_ppm(filename, image, w, h, 2, 1, 0, 0, invert);
554 }
Brian Paulaed51e32012-02-06 17:56:43 -0700555 else if (format == GL_RED && type == GL_UNSIGNED_BYTE) {
556 write_ppm(filename, image, w, h, 1, 0, 0, 0, invert);
557 }
558 else if (format == GL_RGBA && type == GL_FLOAT) {
559 /* convert floats to ubyte */
Matt Turner2b7a9722012-09-03 19:44:00 -0700560 GLubyte *buf = malloc(w * h * 4 * sizeof(GLubyte));
Brian Paulaed51e32012-02-06 17:56:43 -0700561 const GLfloat *f = (const GLfloat *) image;
562 GLuint i;
563 for (i = 0; i < w * h * 4; i++) {
564 UNCLAMPED_FLOAT_TO_UBYTE(buf[i], f[i]);
565 }
566 write_ppm(filename, buf, w, h, 4, 0, 1, 2, invert);
567 free(buf);
568 }
569 else if (format == GL_RED && type == GL_FLOAT) {
570 /* convert floats to ubyte */
Matt Turner2b7a9722012-09-03 19:44:00 -0700571 GLubyte *buf = malloc(w * h * sizeof(GLubyte));
Brian Paulaed51e32012-02-06 17:56:43 -0700572 const GLfloat *f = (const GLfloat *) image;
573 GLuint i;
574 for (i = 0; i < w * h; i++) {
575 UNCLAMPED_FLOAT_TO_UBYTE(buf[i], f[i]);
576 }
577 write_ppm(filename, buf, w, h, 1, 0, 0, 0, invert);
578 free(buf);
579 }
Brian Paule1a9ef22011-03-24 13:38:04 -0600580 else {
Brian Paulaed51e32012-02-06 17:56:43 -0700581 _mesa_problem(NULL,
582 "Unsupported format 0x%x / type 0x%x in _mesa_dump_image()",
583 format, type);
Brian Paule1a9ef22011-03-24 13:38:04 -0600584 }
585}
586
587
Brian Paul67df4fb2009-10-29 09:25:16 -0600588/**
589 * Quick and dirty function to "print" a texture to stdout.
590 */
591void
Brian Paulb8950c22011-07-31 20:14:54 -0700592_mesa_print_texture(struct gl_context *ctx, struct gl_texture_image *img)
Brian Paul67df4fb2009-10-29 09:25:16 -0600593{
Brian Paulb8950c22011-07-31 20:14:54 -0700594 const GLint slice = 0;
595 GLint srcRowStride;
Brian Paul67df4fb2009-10-29 09:25:16 -0600596 GLuint i, j, c;
Brian Paulb8950c22011-07-31 20:14:54 -0700597 GLubyte *data;
598
599 ctx->Driver.MapTextureImage(ctx, img, slice,
600 0, 0, img->Width, img->Height, GL_MAP_READ_BIT,
601 &data, &srcRowStride);
Brian Paul67df4fb2009-10-29 09:25:16 -0600602
603 if (!data) {
Kristian Høgsberg298be2b2010-02-19 12:32:24 -0500604 printf("No texture data\n");
Brian Paul67df4fb2009-10-29 09:25:16 -0600605 }
Brian Paulb8950c22011-07-31 20:14:54 -0700606 else {
607 /* XXX add more formats or make into a new format utility function */
608 switch (img->TexFormat) {
609 case MESA_FORMAT_A8:
610 case MESA_FORMAT_L8:
611 case MESA_FORMAT_I8:
Brian Paulb8950c22011-07-31 20:14:54 -0700612 c = 1;
613 break;
614 case MESA_FORMAT_AL88:
615 case MESA_FORMAT_AL88_REV:
616 c = 2;
617 break;
618 case MESA_FORMAT_RGB888:
619 case MESA_FORMAT_BGR888:
620 c = 3;
621 break;
622 case MESA_FORMAT_RGBA8888:
623 case MESA_FORMAT_ARGB8888:
624 c = 4;
625 break;
626 default:
627 _mesa_problem(NULL, "error in PrintTexture\n");
628 return;
Brian Paul67df4fb2009-10-29 09:25:16 -0600629 }
Brian Paulb8950c22011-07-31 20:14:54 -0700630
631 for (i = 0; i < img->Height; i++) {
632 for (j = 0; j < img->Width; j++) {
633 if (c==1)
634 printf("%02x ", data[0]);
635 else if (c==2)
636 printf("%02x%02x ", data[0], data[1]);
637 else if (c==3)
638 printf("%02x%02x%02x ", data[0], data[1], data[2]);
639 else if (c==4)
640 printf("%02x%02x%02x%02x ", data[0], data[1], data[2], data[3]);
641 data += (srcRowStride - img->Width) * c;
642 }
643 /* XXX use img->ImageStride here */
644 printf("\n");
645
646 }
Brian Paul67df4fb2009-10-29 09:25:16 -0600647 }
Brian Paulb8950c22011-07-31 20:14:54 -0700648
649 ctx->Driver.UnmapTextureImage(ctx, img, slice);
Brian Paul67df4fb2009-10-29 09:25:16 -0600650}