diff --git a/.pick_status.json b/.pick_status.json index 735d9853da9..78f2a1223de 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -2804,7 +2804,7 @@ "description": "radv: Initialize nir_lower_io_to_scalar progress variable", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/amd/vulkan/radv_pipeline_graphics.c b/src/amd/vulkan/radv_pipeline_graphics.c index d56b10c2daa..5dc6b3c7212 100644 --- a/src/amd/vulkan/radv_pipeline_graphics.c +++ b/src/amd/vulkan/radv_pipeline_graphics.c @@ -1662,7 +1662,7 @@ radv_graphics_shaders_link_varyings(struct radv_shader_stage *stages, enum amd_g /* Scalarize all I/O, because nir_opt_varyings and nir_opt_vectorize_io expect all I/O to be scalarized. */ nir_variable_mode sca_mode = nir_var_shader_in; - bool sca_progress; + bool sca_progress = false; if (s != MESA_SHADER_FRAGMENT) sca_mode |= nir_var_shader_out;