Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 3 | * |
Brian Paul | a96f889 | 2005-09-13 01:19:29 +0000 | [diff] [blame] | 4 | * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. |
Brian Paul | 8ee6ab6 | 2009-04-22 15:02:01 -0600 | [diff] [blame] | 5 | * Copyright (C) 2009 VMware, Inc. All Rights Reserved. |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 6 | * |
| 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 Graunke | 3d8d5b2 | 2013-04-21 13:46:48 -0700 | [diff] [blame] | 20 | * 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 Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 24 | */ |
| 25 | |
Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 26 | #include "mtypes.h" |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 27 | #include "attrib.h" |
Brian Paul | 433f2ab | 2009-03-02 17:52:30 -0700 | [diff] [blame] | 28 | #include "colormac.h" |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 29 | #include "enums.h" |
Brian Paul | 1f196b7 | 2009-10-28 21:24:11 -0600 | [diff] [blame] | 30 | #include "formats.h" |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 31 | #include "hash.h" |
Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 32 | #include "imports.h" |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 33 | #include "debug.h" |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 34 | #include "get.h" |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 35 | #include "pixelstore.h" |
| 36 | #include "readpix.h" |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 37 | #include "texobj.h" |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 38 | |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 39 | |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 40 | static const char * |
| 41 | tex_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 Wu | 0c87f16 | 2011-10-23 18:52:38 +0800 | [diff] [blame] | 53 | { GL_TEXTURE_2D_ARRAY_EXT, "GL_TEXTURE_2D_ARRAY" }, |
| 54 | { GL_TEXTURE_EXTERNAL_OES, "GL_TEXTURE_EXTERNAL_OES" } |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 55 | }; |
| 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 Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 65 | void |
| 66 | _mesa_print_state( const char *msg, GLuint state ) |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 67 | { |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 68 | _mesa_debug(NULL, |
Marek Olšák | d883d00 | 2013-04-15 02:23:37 +0200 | [diff] [blame] | 69 | "%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 Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 70 | msg, |
| 71 | state, |
| 72 | (state & _NEW_MODELVIEW) ? "ctx->ModelView, " : "", |
| 73 | (state & _NEW_PROJECTION) ? "ctx->Projection, " : "", |
| 74 | (state & _NEW_TEXTURE_MATRIX) ? "ctx->TextureMatrix, " : "", |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 75 | (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 Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 82 | (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øgsberg | 57edf6b | 2010-03-23 12:07:45 -0400 | [diff] [blame] | 87 | (state & _NEW_STENCIL) ? "ctx->Stencil, " : "", |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 88 | (state & _NEW_TEXTURE) ? "ctx->Texture, " : "", |
| 89 | (state & _NEW_TRANSFORM) ? "ctx->Transform, " : "", |
| 90 | (state & _NEW_VIEWPORT) ? "ctx->Viewport, " : "", |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 91 | (state & _NEW_ARRAY) ? "ctx->Array, " : "", |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 92 | (state & _NEW_RENDERMODE) ? "ctx->RenderMode, " : "", |
| 93 | (state & _NEW_BUFFERS) ? "ctx->Visual, ctx->DrawBuffer,, " : ""); |
| 94 | } |
| 95 | |
| 96 | |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 97 | |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 98 | /** |
| 99 | * Print information about this Mesa version and build options. |
| 100 | */ |
| 101 | void _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 Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 130 | * 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 Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 133 | */ |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 134 | static void |
| 135 | set_verbose_flags(const char *str) |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 136 | { |
Brian Paul | 1984aab | 2005-11-10 05:10:25 +0000 | [diff] [blame] | 137 | #ifdef DEBUG |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 138 | struct option { |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 139 | const char *name; |
| 140 | GLbitfield flag; |
| 141 | }; |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 142 | static const struct option opts[] = { |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 143 | { "varray", VERBOSE_VARRAY }, |
| 144 | { "tex", VERBOSE_TEXTURE }, |
Brian Paul | d9099f8 | 2009-10-14 15:46:25 -0600 | [diff] [blame] | 145 | { "mat", VERBOSE_MATERIAL }, |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 146 | { "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 Paul | ade1cc9 | 2009-10-14 16:23:22 -0600 | [diff] [blame] | 152 | { "disassem", VERBOSE_DISASSEM }, |
Brian Paul | 2fd5cb7 | 2009-10-14 16:24:35 -0600 | [diff] [blame] | 153 | { "draw", VERBOSE_DRAW }, |
Kristian Høgsberg | 042a333 | 2010-09-09 18:59:49 -0400 | [diff] [blame] | 154 | { "swap", VERBOSE_SWAPBUFFERS } |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 155 | }; |
| 156 | GLuint i; |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 157 | |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 158 | if (!str) |
| 159 | return; |
| 160 | |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 161 | MESA_VERBOSE = 0x0; |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 162 | 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 Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 165 | } |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 166 | #endif |
| 167 | } |
| 168 | |
| 169 | |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 170 | /** |
| 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 | */ |
| 175 | static void |
| 176 | set_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 Paul | da35c2b | 2012-05-09 13:25:00 -0600 | [diff] [blame] | 184 | { "silent", DEBUG_SILENT }, /* turn off debug messages */ |
Brian Paul | 93bcf78 | 2012-05-09 12:09:21 -0600 | [diff] [blame] | 185 | { "flush", DEBUG_ALWAYS_FLUSH }, /* flush after each drawing command */ |
| 186 | { "incomplete_tex", DEBUG_INCOMPLETE_TEXTURE }, |
| 187 | { "incomplete_fbo", DEBUG_INCOMPLETE_FBO } |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 188 | }; |
| 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 Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 206 | void |
Kristian Høgsberg | f9995b3 | 2010-10-12 12:26:10 -0400 | [diff] [blame] | 207 | _mesa_init_debug( struct gl_context *ctx ) |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 208 | { |
Brian Paul | 88cd471 | 2012-05-09 12:07:28 -0600 | [diff] [blame] | 209 | set_debug_flags(_mesa_getenv("MESA_DEBUG")); |
| 210 | set_verbose_flags(_mesa_getenv("MESA_VERBOSE")); |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 213 | |
| 214 | /* |
| 215 | * Write ppm file |
| 216 | */ |
| 217 | static void |
| 218 | write_ppm(const char *filename, const GLubyte *buffer, int width, int height, |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 219 | int comps, int rcomp, int gcomp, int bcomp, GLboolean invert) |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 220 | { |
| 221 | FILE *f = fopen( filename, "w" ); |
| 222 | if (f) { |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 223 | int x, y; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 224 | 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 Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 231 | 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 Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 236 | fputc(ptr[i+gcomp], f); /* write green */ |
| 237 | fputc(ptr[i+bcomp], f); /* write blue */ |
| 238 | } |
| 239 | } |
| 240 | fclose(f); |
| 241 | } |
Brian Paul | e1a9ef2 | 2011-03-24 13:38:04 -0600 | [diff] [blame] | 242 | else { |
| 243 | fprintf(stderr, "Unable to create %s in write_ppm()\n", filename); |
| 244 | } |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | |
| 248 | /** |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 249 | * Write a texture image to a ppm file. |
| 250 | * \param face cube face in [0,5] |
| 251 | * \param level mipmap level |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 252 | */ |
| 253 | static void |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 254 | write_texture_image(struct gl_texture_object *texObj, |
| 255 | GLuint face, GLuint level) |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 256 | { |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 257 | 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 Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 262 | char s[100]; |
| 263 | |
Matt Turner | 2b7a972 | 2012-09-03 19:44:00 -0700 | [diff] [blame] | 264 | buffer = malloc(img->Width * img->Height |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 265 | * img->Depth * 4); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 266 | |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 267 | store = ctx->Pack; /* save */ |
| 268 | ctx->Pack = ctx->DefaultPacking; |
| 269 | |
Brian Paul | 4368a65 | 2011-09-30 08:15:30 -0600 | [diff] [blame] | 270 | ctx->Driver.GetTexImage(ctx, GL_RGBA, GL_UNSIGNED_BYTE, buffer, img); |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 271 | |
| 272 | /* make filename */ |
Vinson Lee | fc1be4a | 2010-05-02 01:03:59 -0700 | [diff] [blame] | 273 | _mesa_snprintf(s, sizeof(s), "/tmp/tex%u.l%u.f%u.ppm", texObj->Name, level, face); |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 274 | |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 275 | printf(" Writing image level %u to %s\n", level, s); |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 276 | write_ppm(s, buffer, img->Width, img->Height, 4, 0, 1, 2, GL_FALSE); |
| 277 | |
| 278 | ctx->Pack = store; /* restore */ |
| 279 | |
Kristian Høgsberg | 32f2fd1 | 2010-02-19 11:58:49 -0500 | [diff] [blame] | 280 | free(buffer); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 281 | } |
| 282 | } |
| 283 | |
| 284 | |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 285 | /** |
| 286 | * Write renderbuffer image to a ppm file. |
| 287 | */ |
Brian Paul | e162f28 | 2011-02-15 10:26:56 -0700 | [diff] [blame] | 288 | void |
| 289 | _mesa_write_renderbuffer_image(const struct gl_renderbuffer *rb) |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 290 | { |
| 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 Paul | e162f28 | 2011-02-15 10:26:56 -0700 | [diff] [blame] | 306 | _mesa_debug(NULL, |
| 307 | "Unsupported BaseFormat 0x%x in " |
| 308 | "_mesa_write_renderbuffer_image()\n", |
| 309 | rb->_BaseFormat); |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 310 | return; |
| 311 | } |
| 312 | |
Matt Turner | 2b7a972 | 2012-09-03 19:44:00 -0700 | [diff] [blame] | 313 | buffer = malloc(rb->Width * rb->Height * 4); |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 314 | |
| 315 | ctx->Driver.ReadPixels(ctx, 0, 0, rb->Width, rb->Height, |
| 316 | format, type, &ctx->DefaultPacking, buffer); |
| 317 | |
| 318 | /* make filename */ |
Vinson Lee | fc1be4a | 2010-05-02 01:03:59 -0700 | [diff] [blame] | 319 | _mesa_snprintf(s, sizeof(s), "/tmp/renderbuffer%u.ppm", rb->Name); |
Brian Paul | e162f28 | 2011-02-15 10:26:56 -0700 | [diff] [blame] | 320 | _mesa_snprintf(s, sizeof(s), "C:\\renderbuffer%u.ppm", rb->Name); |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 321 | |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 322 | printf(" Writing renderbuffer image to %s\n", s); |
Brian Paul | e162f28 | 2011-02-15 10:26:56 -0700 | [diff] [blame] | 323 | |
| 324 | _mesa_debug(NULL, " Writing renderbuffer image to %s\n", s); |
| 325 | |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 326 | write_ppm(s, buffer, rb->Width, rb->Height, 4, 0, 1, 2, GL_TRUE); |
| 327 | |
Kristian Høgsberg | 32f2fd1 | 2010-02-19 11:58:49 -0500 | [diff] [blame] | 328 | free(buffer); |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 332 | /** 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 | |
| 337 | static GLuint WriteImages; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 338 | |
| 339 | |
| 340 | static void |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 341 | dump_texture(struct gl_texture_object *texObj, GLuint writeImages) |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 342 | { |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 343 | const GLuint numFaces = texObj->Target == GL_TEXTURE_CUBE_MAP ? 6 : 1; |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 344 | GLboolean written = GL_FALSE; |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 345 | GLuint i, j; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 346 | |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 347 | printf("Texture %u\n", texObj->Name); |
| 348 | printf(" Target %s\n", tex_target_name(texObj->Target)); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 349 | for (i = 0; i < MAX_TEXTURE_LEVELS; i++) { |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 350 | for (j = 0; j < numFaces; j++) { |
| 351 | struct gl_texture_image *texImg = texObj->Image[j][i]; |
| 352 | if (texImg) { |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 353 | printf(" Face %u level %u: %d x %d x %d, format %s\n", |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 354 | j, i, |
| 355 | texImg->Width, texImg->Height, texImg->Depth, |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 356 | _mesa_get_format_name(texImg->TexFormat)); |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 357 | if (writeImages == WRITE_ALL || |
| 358 | (writeImages == WRITE_ONE && !written)) { |
| 359 | write_texture_image(texObj, j, i); |
| 360 | written = GL_TRUE; |
| 361 | } |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 362 | } |
| 363 | } |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | |
| 368 | /** |
Brian Paul | 488e67b | 2009-10-22 09:37:22 -0600 | [diff] [blame] | 369 | * Dump a single texture. |
| 370 | */ |
| 371 | void |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 372 | _mesa_dump_texture(GLuint texture, GLuint writeImages) |
Brian Paul | 488e67b | 2009-10-22 09:37:22 -0600 | [diff] [blame] | 373 | { |
| 374 | GET_CURRENT_CONTEXT(ctx); |
| 375 | struct gl_texture_object *texObj = _mesa_lookup_texture(ctx, texture); |
| 376 | if (texObj) { |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 377 | dump_texture(texObj, writeImages); |
Brian Paul | 488e67b | 2009-10-22 09:37:22 -0600 | [diff] [blame] | 378 | } |
| 379 | } |
| 380 | |
| 381 | |
| 382 | static void |
| 383 | dump_texture_cb(GLuint id, void *data, void *userData) |
| 384 | { |
| 385 | struct gl_texture_object *texObj = (struct gl_texture_object *) data; |
| 386 | (void) userData; |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 387 | dump_texture(texObj, WriteImages); |
Brian Paul | 488e67b | 2009-10-22 09:37:22 -0600 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | |
| 391 | /** |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 392 | * Print basic info about all texture objext to stdout. |
| 393 | * If dumpImages is true, write PPM of level[0] image to a file. |
| 394 | */ |
| 395 | void |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 396 | _mesa_dump_textures(GLuint writeImages) |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 397 | { |
| 398 | GET_CURRENT_CONTEXT(ctx); |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 399 | WriteImages = writeImages; |
Brian Paul | 8ee6ab6 | 2009-04-22 15:02:01 -0600 | [diff] [blame] | 400 | _mesa_HashWalk(ctx->Shared->TexObjects, dump_texture_cb, ctx); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 401 | } |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 402 | |
| 403 | |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 404 | static void |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 405 | dump_renderbuffer(const struct gl_renderbuffer *rb, GLboolean writeImage) |
| 406 | { |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 407 | 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 Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 410 | if (writeImage) { |
Brian Paul | e162f28 | 2011-02-15 10:26:56 -0700 | [diff] [blame] | 411 | _mesa_write_renderbuffer_image(rb); |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 412 | } |
| 413 | } |
| 414 | |
| 415 | |
| 416 | static void |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 417 | dump_renderbuffer_cb(GLuint id, void *data, void *userData) |
| 418 | { |
| 419 | const struct gl_renderbuffer *rb = (const struct gl_renderbuffer *) data; |
| 420 | (void) userData; |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 421 | dump_renderbuffer(rb, WriteImages); |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 422 | } |
| 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 | */ |
| 429 | void |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 430 | _mesa_dump_renderbuffers(GLboolean writeImages) |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 431 | { |
| 432 | GET_CURRENT_CONTEXT(ctx); |
Brian Paul | 403181b | 2009-10-27 13:59:32 -0600 | [diff] [blame] | 433 | WriteImages = writeImages; |
Brian Paul | 2cc5a0e | 2009-10-20 16:13:08 -0600 | [diff] [blame] | 434 | _mesa_HashWalk(ctx->Shared->RenderBuffers, dump_renderbuffer_cb, ctx); |
| 435 | } |
| 436 | |
| 437 | |
| 438 | |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 439 | void |
| 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 Turner | 2b7a972 | 2012-09-03 19:44:00 -0700 | [diff] [blame] | 447 | buf = malloc(w * h * 4); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 448 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 449 | _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); |
| 450 | _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1); |
| 451 | _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 452 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 453 | _mesa_ReadPixels(0, 0, w, h, GL_RGBA, GL_UNSIGNED_BYTE, buf); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 454 | |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 455 | printf("ReadBuffer %p 0x%x DrawBuffer %p 0x%x\n", |
Brian Paul | 8de5a29 | 2010-02-19 12:45:49 -0700 | [diff] [blame] | 456 | (void *) ctx->ReadBuffer->_ColorReadBuffer, |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 457 | ctx->ReadBuffer->ColorReadBuffer, |
Brian Paul | 8de5a29 | 2010-02-19 12:45:49 -0700 | [diff] [blame] | 458 | (void *) ctx->DrawBuffer->_ColorDrawBuffers[0], |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 459 | ctx->DrawBuffer->ColorDrawBuffer[0]); |
| 460 | printf("Writing %d x %d color buffer to %s\n", w, h, filename); |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 461 | write_ppm(filename, buf, w, h, 4, 0, 1, 2, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 462 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 463 | _mesa_PopClientAttrib(); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 464 | |
Kristian Høgsberg | 32f2fd1 | 2010-02-19 11:58:49 -0500 | [diff] [blame] | 465 | free(buf); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | |
| 469 | void |
| 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 Turner | 2b7a972 | 2012-09-03 19:44:00 -0700 | [diff] [blame] | 479 | buf = malloc(w * h * 4); /* 4 bpp */ |
| 480 | buf2 = malloc(w * h * 3); /* 3 bpp */ |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 481 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 482 | _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); |
| 483 | _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1); |
| 484 | _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 485 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 486 | _mesa_ReadPixels(0, 0, w, h, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, buf); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 487 | |
| 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øgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 495 | printf("Writing %d x %d depth buffer to %s\n", w, h, filename); |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 496 | write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 497 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 498 | _mesa_PopClientAttrib(); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 499 | |
Kristian Høgsberg | 32f2fd1 | 2010-02-19 11:58:49 -0500 | [diff] [blame] | 500 | free(buf); |
| 501 | free(buf2); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | |
| 505 | void |
| 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 Turner | 2b7a972 | 2012-09-03 19:44:00 -0700 | [diff] [blame] | 515 | buf = malloc(w * h); /* 1 bpp */ |
| 516 | buf2 = malloc(w * h * 3); /* 3 bpp */ |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 517 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 518 | _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); |
| 519 | _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1); |
| 520 | _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 521 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 522 | _mesa_ReadPixels(0, 0, w, h, GL_STENCIL_INDEX, GL_UNSIGNED_BYTE, buf); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 523 | |
| 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øgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 530 | printf("Writing %d x %d stencil buffer to %s\n", w, h, filename); |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 531 | write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 532 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 533 | _mesa_PopClientAttrib(); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 534 | |
Kristian Høgsberg | 32f2fd1 | 2010-02-19 11:58:49 -0500 | [diff] [blame] | 535 | free(buf); |
| 536 | free(buf2); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 537 | } |
Brian Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 538 | |
| 539 | |
Brian Paul | e1a9ef2 | 2011-03-24 13:38:04 -0600 | [diff] [blame] | 540 | void |
| 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 Paul | aed51e3 | 2012-02-06 17:56:43 -0700 | [diff] [blame] | 555 | 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 Turner | 2b7a972 | 2012-09-03 19:44:00 -0700 | [diff] [blame] | 560 | GLubyte *buf = malloc(w * h * 4 * sizeof(GLubyte)); |
Brian Paul | aed51e3 | 2012-02-06 17:56:43 -0700 | [diff] [blame] | 561 | 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 Turner | 2b7a972 | 2012-09-03 19:44:00 -0700 | [diff] [blame] | 571 | GLubyte *buf = malloc(w * h * sizeof(GLubyte)); |
Brian Paul | aed51e3 | 2012-02-06 17:56:43 -0700 | [diff] [blame] | 572 | 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 Paul | e1a9ef2 | 2011-03-24 13:38:04 -0600 | [diff] [blame] | 580 | else { |
Brian Paul | aed51e3 | 2012-02-06 17:56:43 -0700 | [diff] [blame] | 581 | _mesa_problem(NULL, |
| 582 | "Unsupported format 0x%x / type 0x%x in _mesa_dump_image()", |
| 583 | format, type); |
Brian Paul | e1a9ef2 | 2011-03-24 13:38:04 -0600 | [diff] [blame] | 584 | } |
| 585 | } |
| 586 | |
| 587 | |
Brian Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 588 | /** |
| 589 | * Quick and dirty function to "print" a texture to stdout. |
| 590 | */ |
| 591 | void |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 592 | _mesa_print_texture(struct gl_context *ctx, struct gl_texture_image *img) |
Brian Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 593 | { |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 594 | const GLint slice = 0; |
| 595 | GLint srcRowStride; |
Brian Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 596 | GLuint i, j, c; |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 597 | 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 Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 602 | |
| 603 | if (!data) { |
Kristian Høgsberg | 298be2b | 2010-02-19 12:32:24 -0500 | [diff] [blame] | 604 | printf("No texture data\n"); |
Brian Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 605 | } |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 606 | 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 Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 612 | 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 Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 629 | } |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 630 | |
| 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 Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 647 | } |
Brian Paul | b8950c2 | 2011-07-31 20:14:54 -0700 | [diff] [blame] | 648 | |
| 649 | ctx->Driver.UnmapTextureImage(ctx, img, slice); |
Brian Paul | 67df4fb | 2009-10-29 09:25:16 -0600 | [diff] [blame] | 650 | } |