summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_screen.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-11-06 10:19:39 +0000
committerKeith Whitwell <keithw@vmware.com>2009-11-06 10:19:39 +0000
commit1d6b5957c6be221feb836bc25686246f67769bce (patch)
tree28898afbdc8a45ab472d9ade945a11c1ad9af362 /src/gallium/drivers/i965/brw_screen.c
parent5d7c0cf563b65aeb83f3d2f2ec709a96cf0fbae2 (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.c3
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 04a3f81bcf..275ff0959f 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);