Module: Mesa
Branch: master
Commit: 05f5282d6388feb58b7f5bd24394d68c29e33aad
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=05f5282d6388feb58b7f5bd24394d68c29e33aad

Author: Dave Airlie <[email protected]>
Date:   Thu Dec  7 03:31:41 2017 +0000

r600/sb: add tess/compute initial state registers.

This stops them being optimised out.

Reviewed-by: Roland Scheidegger <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>

---

 src/gallium/drivers/r600/sb/sb_bc_parser.cpp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/gallium/drivers/r600/sb/sb_bc_parser.cpp 
b/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
index ae92a767b4..de3984f596 100644
--- a/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
+++ b/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
@@ -149,11 +149,14 @@ int bc_parser::parse_decls() {
                }
        }
 
-       if (sh->target == TARGET_VS || sh->target == TARGET_ES || sh->target == 
TARGET_HS)
+       if (sh->target == TARGET_VS || sh->target == TARGET_ES || sh->target == 
TARGET_HS || sh->target == TARGET_LS)
                sh->add_input(0, 1, 0x0F);
        else if (sh->target == TARGET_GS) {
                sh->add_input(0, 1, 0x0F);
                sh->add_input(1, 1, 0x0F);
+       } else if (sh->target == TARGET_COMPUTE) {
+               sh->add_input(0, 1, 0x0F);
+               sh->add_input(1, 1, 0x0F);
        }
 
        bool ps_interp = ctx.hw_class >= HW_CLASS_EVERGREEN

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to