[Mesa-dev] [PATCH 1/2] intel/tools: Fix detection of enabled shader stages.

Kenneth Graunke kenneth at whitecape.org
Sat Nov 11 00:55:41 UTC 2017


We renamed "Function Enable" to "Enable", which broke our detection
of whether shaders are enabled or not.  So, we'd see a bunch of HS/DS
packets with program offsets of 0, and think that was a valid TCS/TES.

Fixes: c032cae9ff77e (genxml: Rename "Function Enable" to "Enable".)
---
 src/intel/tools/aubinator_error_decode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c
index 4035723b87d..2322bac8391 100644
--- a/src/intel/tools/aubinator_error_decode.c
+++ b/src/intel/tools/aubinator_error_decode.c
@@ -367,7 +367,7 @@ static void decode(struct gen_spec *spec,
                is_simd8 = strcmp(iter.value, "true") == 0;
             } else if (strcmp(iter.name, "Dispatch Enable") == 0) {
                is_simd8 = strcmp(iter.value, "SIMD8") == 0;
-            } else if (strcmp(iter.name, "Function Enable") == 0) {
+            } else if (strcmp(iter.name, "Enable") == 0) {
                is_enabled = strcmp(iter.value, "true") == 0;
             }
          }
-- 
2.15.0



More information about the mesa-dev mailing list