[Mesa-dev] [PATCH 7/8] swr/rast: move default split size from driver to rasterizer
Tim Rowley
timothy.o.rowley at intel.com
Thu Jun 22 21:13:06 UTC 2017
---
src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py | 2 +-
src/gallium/drivers/swr/swr_screen.cpp | 4 ----
2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py b/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
index 02436f2..c8eb2a3 100644
--- a/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
+++ b/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
@@ -138,7 +138,7 @@ KNOBS = [
['MAX_PRIMS_PER_DRAW', {
'type' : 'uint32_t',
- 'default' : '2040',
+ 'default' : '49152',
'desc' : ['Maximum primitives in a single Draw().',
'Larger primitives are split into smaller Draw calls.',
'Should be a multiple of (3 * vectorWidth).'],
diff --git a/src/gallium/drivers/swr/swr_screen.cpp b/src/gallium/drivers/swr/swr_screen.cpp
index a80ec2a..b7f06c0 100644
--- a/src/gallium/drivers/swr/swr_screen.cpp
+++ b/src/gallium/drivers/swr/swr_screen.cpp
@@ -1065,10 +1065,6 @@ swr_create_screen_internal(struct sw_winsys *winsys)
if (!screen)
return NULL;
- if (!getenv("KNOB_MAX_PRIMS_PER_DRAW")) {
- g_GlobalKnobs.MAX_PRIMS_PER_DRAW.Value(49152);
- }
-
if (!lp_build_init()) {
FREE(screen);
return NULL;
--
2.7.4
More information about the mesa-dev
mailing list