X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmesa%2Fmain%2Fdebug.h;h=bc64a83bbac9a0b84a9e9a2cf912576642de06e9;hb=460863ace9cf24b0dc34dd95f6bf4d2871907919;hp=0449cb1798a571a61fc3a803f927179804592f3e;hpb=d0b7ff551ab25153e3023871af3daa65b394a828;p=mesa.git diff --git a/src/mesa/main/debug.h b/src/mesa/main/debug.h index 0449cb1798a..bc64a83bbac 100644 --- a/src/mesa/main/debug.h +++ b/src/mesa/main/debug.h @@ -36,13 +36,19 @@ #ifndef _DEBUG_H #define _DEBUG_H +#include "glheader.h" +#include "mfeatures.h" + +struct gl_context; +struct gl_texture_image; + #if _HAVE_FULL_GL extern void _mesa_print_tri_caps( const char *name, GLuint flags ); extern void _mesa_print_enable_flags( const char *msg, GLuint flags ); extern void _mesa_print_state( const char *msg, GLuint state ); extern void _mesa_print_info( void ); -extern void _mesa_init_debug( GLcontext *ctx ); +extern void _mesa_init_debug( struct gl_context *ctx ); #else @@ -57,6 +63,9 @@ extern void _mesa_init_debug( GLcontext *ctx ); #endif +extern void +_mesa_write_renderbuffer_image(const struct gl_renderbuffer *rb); + extern void _mesa_dump_texture(GLuint texture, GLuint writeImages); @@ -76,6 +85,10 @@ extern void _mesa_dump_stencil_buffer(const char *filename); extern void -_mesa_print_texture(GLcontext *ctx, const struct gl_texture_image *img); +_mesa_dump_image(const char *filename, const void *image, GLuint w, GLuint h, + GLenum format, GLenum type); + +extern void +_mesa_print_texture(struct gl_context *ctx, struct gl_texture_image *img); #endif