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

Author: Rob Clark <robdcl...@gmail.com>
Date:   Sun Dec 25 13:16:51 2016 -0500

freedreno/ir3: treat clipvertex like a normal varying

We need this in case it is streamed out.  Not sure why we were treating
it specially before.  Having it as a VS out is harmless if FS doesn't
have a matching input.

Signed-off-by: Rob Clark <robdcl...@gmail.com>

---

 src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c 
b/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
index bfc04a7..b0f40f1 100644
--- a/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
+++ b/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
@@ -2151,10 +2151,8 @@ setup_output(struct ir3_compile *ctx, nir_variable *out)
                case VARYING_SLOT_FOGC:
                case VARYING_SLOT_CLIP_DIST0:
                case VARYING_SLOT_CLIP_DIST1:
-                       break;
                case VARYING_SLOT_CLIP_VERTEX:
-                       /* handled entirely in nir_lower_clip: */
-                       return;
+                       break;
                default:
                        if (slot >= VARYING_SLOT_VAR0)
                                break;

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to