diff --git a/.pick_status.json b/.pick_status.json index 2fa6d693eae..8a6be586972 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -14,7 +14,7 @@ "description": "radv: Fix TCS -> TES I/O linking typo of VARYING_SLOT vs. BIT.", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "0e481a4adcd8006256c27d100a0a0f0c01a94171", "notes": null diff --git a/src/amd/vulkan/radv_pipeline_graphics.c b/src/amd/vulkan/radv_pipeline_graphics.c index 033bc913e8a..69dd350a3bc 100644 --- a/src/amd/vulkan/radv_pipeline_graphics.c +++ b/src/amd/vulkan/radv_pipeline_graphics.c @@ -1421,7 +1421,7 @@ radv_link_tcs(const struct radv_device *device, struct radv_shader_stage *tcs_st /* Count the number of per-vertex output slots we need to reserve for the TCS and TES. */ const uint64_t nir_mask = tcs_stage->nir->info.outputs_written & tes_stage->nir->info.inputs_read & - ~(VARYING_SLOT_TESS_LEVEL_OUTER | VARYING_SLOT_TESS_LEVEL_INNER); + ~(VARYING_BIT_TESS_LEVEL_OUTER | VARYING_BIT_TESS_LEVEL_INNER); const uint64_t io_mask = radv_gather_unlinked_io_mask(nir_mask); const unsigned num_reserved_outputs = util_last_bit64(io_mask);