diff options
author | Tim Rowley <[email protected]> | 2016-08-03 17:59:37 -0600 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2016-08-10 11:08:05 -0500 |
commit | 29e1c4a8a9f26ce41aa53dc9bf39852a8530adc6 (patch) | |
tree | 9c46c034c9947a1134acad0e6d84c9fff7a14d97 /src/gallium/drivers/swr/rasterizer/scripts | |
parent | e0c10306f58fa3e1a1cb6a23b8942701d8529cce (diff) |
swr: [rasterizer core] allow override of KNOB thread settings
- Remove HYPERTHREADED_FE support
- Add threading info as optional data passed to SwrCreateContext.
If supplied this data will override any KNOB thread settings.
Signed-off-by: Tim Rowley <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/scripts')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py b/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py index 56c3144bfa6..f93147c38da 100644 --- a/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py +++ b/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py @@ -30,18 +30,6 @@ KNOBS = [ 'category' : 'debug', }], - ['HYPERTHREADED_FE', { - 'type' : 'bool', - 'default' : 'false', - 'desc' : ['EXPERIMENTAL!!', - 'If enabled will attempt to use secondary threads per core to perform', - 'front-end (VS/GS) work.', - '', - 'Note: Setting this will cause KNOB_MAX_THREADS_PER_CORE to be ignored.'], - 'category' : 'perf', - 'advanced' : 'true', - }], - ['DUMP_SHADER_IR', { 'type' : 'bool', 'default' : 'false', |