diff options
author | Brian Paul <[email protected]> | 2009-05-21 09:12:35 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-05-21 09:17:09 -0600 |
commit | 02f73c43b4060b58fa0d9b3da4753cbbccde3c84 (patch) | |
tree | 551e6136e99ae7833824f2dd77714056dc715aa2 /src/mesa/main/debug.h | |
parent | 840c09fc71542fdfc71edd2a2802925d467567bb (diff) |
mesa: added debug functions for dumping color/depth/stencil buffers
Diffstat (limited to 'src/mesa/main/debug.h')
-rw-r--r-- | src/mesa/main/debug.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/debug.h b/src/mesa/main/debug.h index 1862ec75b7b..bb384c43242 100644 --- a/src/mesa/main/debug.h +++ b/src/mesa/main/debug.h @@ -60,4 +60,13 @@ extern void _mesa_init_debug( GLcontext *ctx ); extern void _mesa_dump_textures(GLboolean dumpImages); +extern void +_mesa_dump_color_buffer(const char *filename); + +extern void +_mesa_dump_depth_buffer(const char *filename); + +extern void +_mesa_dump_stencil_buffer(const char *filename); + #endif |