diff options
author | Keith Whitwell <[email protected]> | 2009-11-06 10:19:39 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-06 10:19:39 +0000 |
commit | 1d6b5957c6be221feb836bc25686246f67769bce (patch) | |
tree | 28898afbdc8a45ab472d9ade945a11c1ad9af362 /src/gallium/drivers/i965/brw_screen.c | |
parent | 5d7c0cf563b65aeb83f3d2f2ec709a96cf0fbae2 (diff) |
i965g: add DEBUG_MIN_URB flag
Diffstat (limited to 'src/gallium/drivers/i965/brw_screen.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_screen.c b/src/gallium/drivers/i965/brw_screen.c index 04a3f81bcf0..275ff0959f9 100644 --- a/src/gallium/drivers/i965/brw_screen.c +++ b/src/gallium/drivers/i965/brw_screen.c @@ -48,6 +48,7 @@ static const struct debug_named_value debug_names[] = { { "bat", DEBUG_BATCH}, { "pix", DEBUG_PIXEL}, { "buf", DEBUG_BUFMGR}, + { "min", DEBUG_MIN_URB}, { "sync", DEBUG_SYNC}, { "prim", DEBUG_PRIMS }, { "vert", DEBUG_VERTS }, @@ -291,7 +292,7 @@ brw_create_screen(struct brw_winsys_screen *sws, uint pci_id) #ifdef DEBUG BRW_DEBUG = debug_get_flags_option("BRW_DEBUG", debug_names, 0); BRW_DEBUG |= debug_get_flags_option("INTEL_DEBUG", debug_names, 0); - BRW_DEBUG |= DEBUG_STATS; + BRW_DEBUG |= DEBUG_STATS | DEBUG_MIN_URB; #endif memset(&chipset, 0, sizeof chipset); |