Mesa (master): nir/intrinsics: Make load_barycentric_input take a 2-component coor

Jason Ekstrand jekstrand at kemper.freedesktop.org
Tue Mar 14 15:56:35 UTC 2017


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

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Thu Mar  2 17:39:11 2017 -0800

nir/intrinsics: Make load_barycentric_input take a 2-component coor

Reviewed-by: Eric Anholt <eric at anholt.net>
Reviewed-by: Connor Abbott <cwabbott0 at gmail.com>
Cc: "17.0 13.0" <mesa-stable at lists.freedesktop.org>

---

 src/compiler/nir/nir_intrinsics.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/compiler/nir/nir_intrinsics.h b/src/compiler/nir/nir_intrinsics.h
index f45bfe2..5c8f283 100644
--- a/src/compiler/nir/nir_intrinsics.h
+++ b/src/compiler/nir/nir_intrinsics.h
@@ -401,7 +401,9 @@ LOAD(input, 1, 2, BASE, COMPONENT, xx, NIR_INTRINSIC_CAN_ELIMINATE | NIR_INTRINS
 /* src[] = { vertex, offset }. const_index[] = { base, component } */
 LOAD(per_vertex_input, 2, 2, BASE, COMPONENT, xx, NIR_INTRINSIC_CAN_ELIMINATE | NIR_INTRINSIC_CAN_REORDER)
 /* src[] = { barycoord, offset }. const_index[] = { base, component } */
-LOAD(interpolated_input, 2, 2, BASE, COMPONENT, xx, NIR_INTRINSIC_CAN_ELIMINATE | NIR_INTRINSIC_CAN_REORDER)
+INTRINSIC(load_interpolated_input, 2, ARR(2, 1), true, 0, 0,
+          2, BASE, COMPONENT, xx,
+          NIR_INTRINSIC_CAN_ELIMINATE | NIR_INTRINSIC_CAN_REORDER)
 
 /* src[] = { buffer_index, offset }. No const_index */
 LOAD(ssbo, 2, 0, xx, xx, xx, NIR_INTRINSIC_CAN_ELIMINATE)




More information about the mesa-commit mailing list