From: Jason Ekstrand Date: Thu, 24 Dec 2015 07:32:55 +0000 (-0800) Subject: anv/meta: Fix the pos_out location for the vertex shader X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3eb108ef871f1bd4c909ce627ce76e5226e8d035;p=mesa.git anv/meta: Fix the pos_out location for the vertex shader --- diff --git a/src/vulkan/anv_meta.c b/src/vulkan/anv_meta.c index cf6678d852f..c1d600a3ed8 100644 --- a/src/vulkan/anv_meta.c +++ b/src/vulkan/anv_meta.c @@ -48,7 +48,7 @@ build_nir_vertex_shader(bool attr_flat) pos_in->data.location = VERT_ATTRIB_GENERIC0; nir_variable *pos_out = nir_variable_create(b.shader, nir_var_shader_out, vertex_type, "gl_Position"); - pos_in->data.location = VARYING_SLOT_POS; + pos_out->data.location = VARYING_SLOT_POS; nir_copy_var(&b, pos_out, pos_in); /* Add one more pass-through attribute. For clear shaders, this is used