Module: Mesa Branch: master Commit: 772ed657a27ccf402a5cbbab32e62e85541acc03 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=772ed657a27ccf402a5cbbab32e62e85541acc03
Author: Mike Blumenkrantz <[email protected]> Date: Fri Jul 17 09:46:47 2020 -0400 nir_ allow nir_lower_clip_halfz to run in tess eval shader Reviewed-by: Eric Anholt <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6027> --- src/compiler/nir/nir_lower_clip_halfz.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_lower_clip_halfz.c b/src/compiler/nir/nir_lower_clip_halfz.c index 6db1910362f..254c49882e4 100644 --- a/src/compiler/nir/nir_lower_clip_halfz.c +++ b/src/compiler/nir/nir_lower_clip_halfz.c @@ -57,7 +57,8 @@ void nir_lower_clip_halfz(nir_shader *shader) { if (shader->info.stage != MESA_SHADER_VERTEX && - shader->info.stage != MESA_SHADER_GEOMETRY) + shader->info.stage != MESA_SHADER_GEOMETRY && + shader->info.stage != MESA_SHADER_TESS_EVAL) return; nir_foreach_function(function, shader) { _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
