From 0a155538eb7e7870b99fb8b3fd8e2a268361d2c8 Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Sat, 27 Jun 2015 17:38:57 -0400 Subject: gallium/ttn: mark location specially in nir for color0-writes-all We need to distinguish a shader that has separate writes to each MRT from one which is supposed to write the data from MRT 0 to all the MRTs. In TGSI this is done with a property. NIR doesn't have that, so encode it as a funny location and decode on the other end. Signed-off-by: Ilia Mirkin Reviewed-by: Eric Anholt --- src/gallium/drivers/vc4/vc4_program.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/gallium/drivers/vc4/vc4_program.c') diff --git a/src/gallium/drivers/vc4/vc4_program.c b/src/gallium/drivers/vc4/vc4_program.c index 7b39a03f01a..a7aa3172a75 100644 --- a/src/gallium/drivers/vc4/vc4_program.c +++ b/src/gallium/drivers/vc4/vc4_program.c @@ -1783,6 +1783,12 @@ ntq_setup_outputs(struct vc4_compile *c) assert(array_len == 1); + /* NIR hack to pass through + * TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS */ + if (semantic_name == TGSI_SEMANTIC_COLOR && + semantic_index == -1) + semantic_index = 0; + for (int i = 0; i < 4; i++) { add_output(c, loc + i, -- cgit v1.2.3