diff options
author | Dave Airlie <[email protected]> | 2018-01-10 03:57:52 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2018-01-18 03:37:01 +0000 |
commit | 795512b235730c2ddb834b3082170521abb59811 (patch) | |
tree | bab688225cf15df6c153817a42f277d19710296f /src/gallium/drivers/r600/sb | |
parent | 1ca2eb3bf32dbb6781343d82ee4c72caa4c4e8d5 (diff) |
r600/sb: disable if conversion for hs
This fixes bad interactions with the LDS special values.
Acked-By: Roland Scheidegger <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/sb')
-rw-r--r-- | src/gallium/drivers/r600/sb/sb_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/sb/sb_core.cpp b/src/gallium/drivers/r600/sb/sb_core.cpp index cdc2862d36d..5049b677842 100644 --- a/src/gallium/drivers/r600/sb/sb_core.cpp +++ b/src/gallium/drivers/r600/sb/sb_core.cpp @@ -191,7 +191,7 @@ int r600_sb_bytecode_process(struct r600_context *rctx, // if conversion breaks the dependency tracking between CF_EMIT ops when it removes // the phi nodes for SV_GEOMETRY_EMIT. Just disable it for GS - if (sh->target != TARGET_GS) + if (sh->target != TARGET_GS && sh->target != TARGET_HS) SB_RUN_PASS(if_conversion, 1); // if_conversion breaks info about uses, but next pass (peephole) |