diff options
author | Brian Paul <[email protected]> | 2011-02-18 09:53:29 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-02-18 10:34:25 -0700 |
commit | 6364d75008b4fa580c1cb47c59ba1cf3e0caa6cd (patch) | |
tree | 3b6eb861897d04a0519472093a6a5aac670ecd23 /src/mesa/main/fbobject.c | |
parent | 633c9fcf781d4cc23d69d4d839cf2143ac9df1fd (diff) |
mesa: MESA_VERBOSE logging for glRead/Draw/CopyPixels, glBlitFramebuffer
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 97cbd3c614d..ab6b2a9b17b 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -2310,6 +2310,13 @@ _mesa_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, ASSERT_OUTSIDE_BEGIN_END(ctx); FLUSH_VERTICES(ctx, _NEW_BUFFERS); + if (MESA_VERBOSE & VERBOSE_API) + _mesa_debug(ctx, + "glBlitFramebuffer(%d, %d, %d, %d, %d, %d, %d, %d, 0x%x, %s)\n", + srcX0, srcY0, srcX1, srcY1, + dstX0, dstY0, dstX1, dstY1, + mask, _mesa_lookup_enum_by_nr(filter)); + if (ctx->NewState) { _mesa_update_state(ctx); } |