From b2b31ae6dfb45f0b77a7975822a1c7b33fce91f8 Mon Sep 17 00:00:00 2001 From: James Zhu Date: Tue, 19 Mar 2019 15:45:29 -0400 Subject: [PATCH 1/3] gallium/auxiliary/vl: Fixed blur issue with weave compute shader Signed-off-by: James Zhu --- src/gallium/auxiliary/vl/vl_compositor_cs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/vl/vl_compositor_cs.c b/src/gallium/auxiliary/vl/vl_compositor_cs.c index bad7d5f..6336b23 100644 --- a/src/gallium/auxiliary/vl/vl_compositor_cs.c +++ b/src/gallium/auxiliary/vl/vl_compositor_cs.c @@ -201,7 +201,7 @@ const char *compute_shader_weave = "TEX_LZ TEMP[11].y, TEMP[13], SAMP[1], 2D_ARRAY\n" "TEX_LZ TEMP[11].z, TEMP[13], SAMP[2], 2D_ARRAY\n" - "LRP TEMP[6], TEMP[14], TEMP[11], TEMP[10]\n" + "LRP TEMP[6], TEMP[14], TEMP[10], TEMP[11]\n" "MOV TEMP[6].w, IMM[1].xxxx\n" /* Color Space Conversion */ -- 2.7.4