summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
diff options
context:
space:
mode:
authorChris Forbes <chrisf@ijw.co.nz>2013-09-30 22:10:17 +1300
committerChris Forbes <chrisf@ijw.co.nz>2013-10-03 07:54:53 +1300
commit0d7fc10bcd2efb2f96d684b3273b4e0c0b0afef0 (patch)
tree04105027f89020ef6769e2100f6bacdb202cefc5 /src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
parent4e4c32ba11598818583ad0aa689339297ddf1c74 (diff)
downloadexternal_mesa3d-0d7fc10bcd2efb2f96d684b3273b4e0c0b0afef0.zip
external_mesa3d-0d7fc10bcd2efb2f96d684b3273b4e0c0b0afef0.tar.gz
external_mesa3d-0d7fc10bcd2efb2f96d684b3273b4e0c0b0afef0.tar.bz2
i965: fix bogus swizzle in brw_cubemap_normalize
When used with a cube array in VS, failed assertion in ir_validate: Assignment count of LHS write mask channels enabled not matching RHS vector size (3 LHS, 4 RHS). To fix this, swizzle the RHS correctly for the writemask. This showed up in the ARB_texture_gather tests, which exercise cube arrays in the VS. Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> Cc: "9.2" <mesa-stable@lists.freedesktop.org> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp b/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
index 46155fb..949414c 100644
--- a/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
+++ b/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
@@ -92,10 +92,12 @@ brw_cubemap_normalize_visitor::visit_leave(ir_texture *ir)
/* coordinate.xyz *= expr */
assign = new(mem_ctx) ir_assignment(
new(mem_ctx) ir_dereference_variable(var),
- new(mem_ctx) ir_expression(ir_binop_mul,
- ir->coordinate->type,
- new(mem_ctx) ir_dereference_variable(var),
- expr));
+ new(mem_ctx) ir_swizzle(
+ new(mem_ctx) ir_expression(ir_binop_mul,
+ ir->coordinate->type,
+ new(mem_ctx) ir_dereference_variable(var),
+ expr),
+ 0, 1, 2, 0, 3));
assign->write_mask = WRITEMASK_XYZ;
base_ir->insert_before(assign);
ir->coordinate = new(mem_ctx) ir_dereference_variable(var);