anv: fix writemask on blit fragment shader.
authorDave Airlie <airlied@redhat.com>
Tue, 16 Aug 2016 00:00:28 +0000 (10:00 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 16 Aug 2016 00:29:44 +0000 (10:29 +1000)
I'm not sure if anything even uses this, but I found this on radv, so
just fix it on anv for consistency.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/intel/vulkan/anv_meta_blit.c

index e8b244b..d2e375a 100644 (file)
@@ -106,7 +106,7 @@ build_nir_copy_fragment_shader(enum glsl_sampler_dim tex_dim)
    nir_variable *color_out = nir_variable_create(b.shader, nir_var_shader_out,
                                                  vec4, "f_color");
    color_out->data.location = FRAG_RESULT_DATA0;
-   nir_store_var(&b, color_out, &tex->dest.ssa, 4);
+   nir_store_var(&b, color_out, &tex->dest.ssa, 0xf);
 
    return b.shader;
 }