summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTim Rowley <[email protected]>2016-03-17 15:39:13 -0600
committerTim Rowley <[email protected]>2016-03-25 14:45:39 -0500
commit4b4547a7216ec6309da54f508211c0aba02ad5e3 (patch)
tree100ffcf2999edffc248a9f3974882a26e79de6f3 /src
parent9111d63228afffed301bb888eb71af287a0887d3 (diff)
swr: [rasterizer] Reduce max in-flight draws to 96 (by default)
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py b/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py
index 9aa43376f35..5843abf2aeb 100644
--- a/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py
+++ b/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py
@@ -121,7 +121,7 @@ KNOBS = [
['MAX_DRAWS_IN_FLIGHT', {
'type' : 'uint32_t',
- 'default' : '160',
+ 'default' : '96',
'desc' : ['Maximum number of draws outstanding before API thread blocks.'],
'category' : 'perf',
}],