diff options
author | Eric Anholt <[email protected]> | 2007-12-13 16:49:55 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2007-12-13 23:26:43 -0800 |
commit | dbfe05ca24d3b111482c079cc7a40da160b6074c (patch) | |
tree | 9e1bf8fb99e0dd77edeee2047662397be2e764fe /src/mesa/drivers/dri/i965 | |
parent | 9f7d6b72108d9d8bec5f567bcaf33714ffe3ebc2 (diff) |
[intel] Enable INTEL_DEBUG=bufmgr output in TTM mode as well as classic.
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_context.c b/src/mesa/drivers/dri/i965/intel_context.c index fb95c492eb6..1277dd15aa5 100644 --- a/src/mesa/drivers/dri/i965/intel_context.c +++ b/src/mesa/drivers/dri/i965/intel_context.c @@ -534,8 +534,8 @@ GLboolean intelInitContext( struct intel_context *intel, INTEL_DEBUG = driParseDebugString( getenv( "INTEL_DEBUG" ), debug_control ); - if (!intel->ttm && (INTEL_DEBUG & DEBUG_BUFMGR)) - dri_bufmgr_fake_set_debug(intel->bufmgr, GL_TRUE); + if (INTEL_DEBUG & DEBUG_BUFMGR) + dri_bufmgr_set_debug(intel->bufmgr, GL_TRUE); intel_recreate_static_regions(intel); |