Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
Brian Paul | a96f889 | 2005-09-13 01:19:29 +0000 | [diff] [blame] | 3 | * Version: 6.5 |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 4 | * |
Brian Paul | a96f889 | 2005-09-13 01:19:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. |
Brian Paul | 8ee6ab6 | 2009-04-22 15:02:01 -0600 | [diff] [blame] | 6 | * Copyright (C) 2009 VMware, Inc. All Rights Reserved. |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 7 | * |
| 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 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 | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 29 | #include "context.h" |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 30 | #include "hash.h" |
Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 31 | #include "imports.h" |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 32 | #include "debug.h" |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 33 | #include "get.h" |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 34 | #include "pixelstore.h" |
| 35 | #include "readpix.h" |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 36 | #include "texgetimage.h" |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 37 | #include "texobj.h" |
| 38 | #include "texformat.h" |
| 39 | |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 40 | |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 41 | /** |
| 42 | * Primitive names |
| 43 | */ |
| 44 | const 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 Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 59 | |
| 60 | void |
| 61 | _mesa_print_state( const char *msg, GLuint state ) |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 62 | { |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 63 | _mesa_debug(NULL, |
Keith Whitwell | 3d5815f | 2001-03-29 17:08:26 +0000 | [diff] [blame] | 64 | "%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 Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 65 | 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 Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 79 | (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 Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 89 | (state & _NEW_RENDERMODE) ? "ctx->RenderMode, " : "", |
| 90 | (state & _NEW_BUFFERS) ? "ctx->Visual, ctx->DrawBuffer,, " : ""); |
| 91 | } |
| 92 | |
| 93 | |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 94 | |
Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 95 | void |
| 96 | _mesa_print_tri_caps( const char *name, GLuint flags ) |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 97 | { |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 98 | _mesa_debug(NULL, |
Daniel Borca | 885f107 | 2004-11-12 10:23:10 +0000 | [diff] [blame] | 99 | "%s: (0x%x) %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] | 100 | name, |
| 101 | flags, |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 102 | (flags & DD_FLATSHADE) ? "flat-shade, " : "", |
Brian Paul | ee403ff | 2001-03-29 16:50:31 +0000 | [diff] [blame] | 103 | (flags & DD_SEPARATE_SPECULAR) ? "separate-specular, " : "", |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 104 | (flags & DD_TRI_LIGHT_TWOSIDE) ? "tri-light-twoside, " : "", |
Daniel Borca | 885f107 | 2004-11-12 10:23:10 +0000 | [diff] [blame] | 105 | (flags & DD_TRI_TWOSTENCIL) ? "tri-twostencil, " : "", |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 106 | (flags & DD_TRI_UNFILLED) ? "tri-unfilled, " : "", |
| 107 | (flags & DD_TRI_STIPPLE) ? "tri-stipple, " : "", |
| 108 | (flags & DD_TRI_OFFSET) ? "tri-offset, " : "", |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 109 | (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 Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 113 | (flags & DD_POINT_SMOOTH) ? "point-smooth, " : "", |
| 114 | (flags & DD_POINT_SIZE) ? "point-size, " : "", |
| 115 | (flags & DD_POINT_ATTEN) ? "point-atten, " : "", |
Keith Whitwell | 3d5815f | 2001-03-29 17:08:26 +0000 | [diff] [blame] | 116 | (flags & DD_TRI_CULL_FRONT_BACK) ? "cull-all, " : "" |
Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 117 | ); |
| 118 | } |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 119 | |
| 120 | |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 121 | /** |
| 122 | * Print information about this Mesa version and build options. |
| 123 | */ |
| 124 | void _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 | */ |
| 160 | static void add_debug_flags( const char *debug ) |
| 161 | { |
Brian Paul | 1984aab | 2005-11-10 05:10:25 +0000 | [diff] [blame] | 162 | #ifdef DEBUG |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 163 | 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 }, |
Brian Paul | d9099f8 | 2009-10-14 15:46:25 -0600 | [diff] [blame] | 170 | { "mat", VERBOSE_MATERIAL }, |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 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 Paul | ade1cc9 | 2009-10-14 16:23:22 -0600 | [diff] [blame^] | 177 | { "disassem", VERBOSE_DISASSEM }, |
| 178 | { "draw", VERBOSE_DRAW } |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 179 | }; |
| 180 | GLuint i; |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 181 | |
Brian Paul | 131d425 | 2008-11-01 10:57:25 -0600 | [diff] [blame] | 182 | MESA_VERBOSE = 0x0; |
| 183 | for (i = 0; i < Elements(debug_opt); i++) { |
| 184 | if (_mesa_strstr(debug, debug_opt[i].name)) |
| 185 | MESA_VERBOSE |= debug_opt[i].flag; |
| 186 | } |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 187 | |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 188 | /* Debug flag: |
| 189 | */ |
| 190 | if (_mesa_strstr(debug, "flush")) |
| 191 | MESA_DEBUG_FLAGS |= DEBUG_ALWAYS_FLUSH; |
Brian Paul | 1984aab | 2005-11-10 05:10:25 +0000 | [diff] [blame] | 192 | |
| 193 | #if defined(_FPU_GETCW) && defined(_FPU_SETCW) |
| 194 | if (_mesa_strstr(debug, "fpexceptions")) { |
| 195 | /* raise FP exceptions */ |
| 196 | fpu_control_t mask; |
| 197 | _FPU_GETCW(mask); |
| 198 | mask &= ~(_FPU_MASK_IM | _FPU_MASK_DM | _FPU_MASK_ZM |
| 199 | | _FPU_MASK_OM | _FPU_MASK_UM); |
| 200 | _FPU_SETCW(mask); |
| 201 | } |
| 202 | #endif |
| 203 | |
Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 204 | #else |
| 205 | (void) debug; |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 206 | #endif |
| 207 | } |
| 208 | |
| 209 | |
| 210 | void |
| 211 | _mesa_init_debug( GLcontext *ctx ) |
| 212 | { |
| 213 | char *c; |
| 214 | |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 215 | /* Dither disable */ |
| 216 | ctx->NoDither = _mesa_getenv("MESA_NO_DITHER") ? GL_TRUE : GL_FALSE; |
| 217 | if (ctx->NoDither) { |
| 218 | if (_mesa_getenv("MESA_DEBUG")) { |
| 219 | _mesa_debug(ctx, "MESA_NO_DITHER set - dithering disabled\n"); |
| 220 | } |
| 221 | ctx->Color.DitherFlag = GL_FALSE; |
| 222 | } |
| 223 | |
| 224 | c = _mesa_getenv("MESA_DEBUG"); |
| 225 | if (c) |
| 226 | add_debug_flags(c); |
| 227 | |
| 228 | c = _mesa_getenv("MESA_VERBOSE"); |
| 229 | if (c) |
| 230 | add_debug_flags(c); |
| 231 | } |
| 232 | |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 233 | |
| 234 | /* |
| 235 | * Write ppm file |
| 236 | */ |
| 237 | static void |
| 238 | write_ppm(const char *filename, const GLubyte *buffer, int width, int height, |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 239 | int comps, int rcomp, int gcomp, int bcomp, GLboolean invert) |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 240 | { |
| 241 | FILE *f = fopen( filename, "w" ); |
| 242 | if (f) { |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 243 | int x, y; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 244 | const GLubyte *ptr = buffer; |
| 245 | fprintf(f,"P6\n"); |
| 246 | fprintf(f,"# ppm-file created by osdemo.c\n"); |
| 247 | fprintf(f,"%i %i\n", width,height); |
| 248 | fprintf(f,"255\n"); |
| 249 | fclose(f); |
| 250 | f = fopen( filename, "ab" ); /* reopen in binary append mode */ |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 251 | for (y=0; y < height; y++) { |
| 252 | for (x = 0; x < width; x++) { |
| 253 | int yy = invert ? (height - 1 - y) : y; |
| 254 | int i = (yy * width + x) * comps; |
| 255 | fputc(ptr[i+rcomp], f); /* write red */ |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 256 | fputc(ptr[i+gcomp], f); /* write green */ |
| 257 | fputc(ptr[i+bcomp], f); /* write blue */ |
| 258 | } |
| 259 | } |
| 260 | fclose(f); |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | |
| 265 | /** |
| 266 | * Write level[0] image to a ppm file. |
| 267 | */ |
| 268 | static void |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 269 | write_texture_image(struct gl_texture_object *texObj, GLuint face, GLuint level) |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 270 | { |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 271 | struct gl_texture_image *img = texObj->Image[face][level]; |
| 272 | if (img) { |
| 273 | GET_CURRENT_CONTEXT(ctx); |
| 274 | struct gl_pixelstore_attrib store; |
| 275 | GLubyte *buffer; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 276 | char s[100]; |
| 277 | |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 278 | buffer = (GLubyte *) _mesa_malloc(img->Width * img->Height |
| 279 | * img->Depth * 4); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 280 | |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 281 | store = ctx->Pack; /* save */ |
| 282 | ctx->Pack = ctx->DefaultPacking; |
| 283 | |
| 284 | ctx->Driver.GetTexImage(ctx, texObj->Target, level, |
| 285 | GL_RGBA, GL_UNSIGNED_BYTE, |
| 286 | buffer, texObj, img); |
| 287 | |
| 288 | /* make filename */ |
| 289 | _mesa_sprintf(s, "/tmp/teximage%u.ppm", texObj->Name); |
| 290 | |
| 291 | _mesa_printf(" Writing image level %u to %s\n", level, s); |
| 292 | write_ppm(s, buffer, img->Width, img->Height, 4, 0, 1, 2, GL_FALSE); |
| 293 | |
| 294 | ctx->Pack = store; /* restore */ |
| 295 | |
| 296 | _mesa_free(buffer); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
| 300 | |
| 301 | static GLboolean DumpImages; |
| 302 | |
| 303 | |
| 304 | static void |
| 305 | dump_texture_cb(GLuint id, void *data, void *userData) |
| 306 | { |
| 307 | struct gl_texture_object *texObj = (struct gl_texture_object *) data; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 308 | int i; |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 309 | GLboolean written = GL_FALSE; |
José Fonseca | 8cadf6c | 2009-02-11 13:50:43 +0000 | [diff] [blame] | 310 | (void) userData; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 311 | |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 312 | _mesa_printf("Texture %u\n", texObj->Name); |
| 313 | _mesa_printf(" Target 0x%x\n", texObj->Target); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 314 | for (i = 0; i < MAX_TEXTURE_LEVELS; i++) { |
| 315 | struct gl_texture_image *texImg = texObj->Image[0][i]; |
| 316 | if (texImg) { |
Brian Paul | b98f0f2 | 2009-08-04 15:04:37 -0600 | [diff] [blame] | 317 | _mesa_printf(" Image %u: %d x %d x %d, format %u at %p\n", i, |
| 318 | texImg->Width, texImg->Height, texImg->Depth, |
| 319 | texImg->TexFormat->MesaFormat, texImg->Data); |
| 320 | if (DumpImages && !written) { |
| 321 | GLuint face = 0; |
| 322 | write_texture_image(texObj, face, i); |
| 323 | written = GL_TRUE; |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | |
| 330 | /** |
| 331 | * Print basic info about all texture objext to stdout. |
| 332 | * If dumpImages is true, write PPM of level[0] image to a file. |
| 333 | */ |
| 334 | void |
| 335 | _mesa_dump_textures(GLboolean dumpImages) |
| 336 | { |
| 337 | GET_CURRENT_CONTEXT(ctx); |
| 338 | DumpImages = dumpImages; |
Brian Paul | 8ee6ab6 | 2009-04-22 15:02:01 -0600 | [diff] [blame] | 339 | _mesa_HashWalk(ctx->Shared->TexObjects, dump_texture_cb, ctx); |
Brian Paul | 266fe93 | 2009-02-07 11:49:52 -0700 | [diff] [blame] | 340 | } |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 341 | |
| 342 | |
| 343 | void |
| 344 | _mesa_dump_color_buffer(const char *filename) |
| 345 | { |
| 346 | GET_CURRENT_CONTEXT(ctx); |
| 347 | const GLuint w = ctx->DrawBuffer->Width; |
| 348 | const GLuint h = ctx->DrawBuffer->Height; |
| 349 | GLubyte *buf; |
| 350 | |
| 351 | buf = (GLubyte *) _mesa_malloc(w * h * 4); |
| 352 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 353 | _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); |
| 354 | _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1); |
| 355 | _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 356 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 357 | _mesa_ReadPixels(0, 0, w, h, GL_RGBA, GL_UNSIGNED_BYTE, buf); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 358 | |
| 359 | _mesa_printf("ReadBuffer %p 0x%x DrawBuffer %p 0x%x\n", |
| 360 | ctx->ReadBuffer->_ColorReadBuffer, |
| 361 | ctx->ReadBuffer->ColorReadBuffer, |
| 362 | ctx->DrawBuffer->_ColorDrawBuffers[0], |
| 363 | ctx->DrawBuffer->ColorDrawBuffer[0]); |
| 364 | _mesa_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] | 365 | write_ppm(filename, buf, w, h, 4, 0, 1, 2, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 366 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 367 | _mesa_PopClientAttrib(); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 368 | |
| 369 | _mesa_free(buf); |
| 370 | } |
| 371 | |
| 372 | |
| 373 | void |
| 374 | _mesa_dump_depth_buffer(const char *filename) |
| 375 | { |
| 376 | GET_CURRENT_CONTEXT(ctx); |
| 377 | const GLuint w = ctx->DrawBuffer->Width; |
| 378 | const GLuint h = ctx->DrawBuffer->Height; |
| 379 | GLuint *buf; |
| 380 | GLubyte *buf2; |
| 381 | GLuint i; |
| 382 | |
| 383 | buf = (GLuint *) _mesa_malloc(w * h * 4); /* 4 bpp */ |
| 384 | buf2 = (GLubyte *) _mesa_malloc(w * h * 3); /* 3 bpp */ |
| 385 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 386 | _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); |
| 387 | _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1); |
| 388 | _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 389 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 390 | _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] | 391 | |
| 392 | /* spread 24 bits of Z across R, G, B */ |
| 393 | for (i = 0; i < w * h; i++) { |
| 394 | buf2[i*3+0] = (buf[i] >> 24) & 0xff; |
| 395 | buf2[i*3+1] = (buf[i] >> 16) & 0xff; |
| 396 | buf2[i*3+2] = (buf[i] >> 8) & 0xff; |
| 397 | } |
| 398 | |
| 399 | _mesa_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] | 400 | write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 401 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 402 | _mesa_PopClientAttrib(); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 403 | |
| 404 | _mesa_free(buf); |
| 405 | _mesa_free(buf2); |
| 406 | } |
| 407 | |
| 408 | |
| 409 | void |
| 410 | _mesa_dump_stencil_buffer(const char *filename) |
| 411 | { |
| 412 | GET_CURRENT_CONTEXT(ctx); |
| 413 | const GLuint w = ctx->DrawBuffer->Width; |
| 414 | const GLuint h = ctx->DrawBuffer->Height; |
| 415 | GLubyte *buf; |
| 416 | GLubyte *buf2; |
| 417 | GLuint i; |
| 418 | |
| 419 | buf = (GLubyte *) _mesa_malloc(w * h); /* 1 bpp */ |
| 420 | buf2 = (GLubyte *) _mesa_malloc(w * h * 3); /* 3 bpp */ |
| 421 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 422 | _mesa_PushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); |
| 423 | _mesa_PixelStorei(GL_PACK_ALIGNMENT, 1); |
| 424 | _mesa_PixelStorei(GL_PACK_INVERT_MESA, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 425 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 426 | _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] | 427 | |
| 428 | for (i = 0; i < w * h; i++) { |
| 429 | buf2[i*3+0] = buf[i]; |
| 430 | buf2[i*3+1] = (buf[i] & 127) * 2; |
| 431 | buf2[i*3+2] = (buf[i] - 128) * 2; |
| 432 | } |
| 433 | |
| 434 | _mesa_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] | 435 | write_ppm(filename, buf2, w, h, 3, 0, 1, 2, GL_TRUE); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 436 | |
Brian Paul | 185fbcc | 2009-06-04 14:26:51 -0600 | [diff] [blame] | 437 | _mesa_PopClientAttrib(); |
Brian Paul | 02f73c43 | 2009-05-21 09:12:35 -0600 | [diff] [blame] | 438 | |
| 439 | _mesa_free(buf); |
| 440 | _mesa_free(buf2); |
| 441 | } |