diff --git a/.pick_status.json b/.pick_status.json index 5ce1325fcd3..b8c1cfe0dd0 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -256,7 +256,7 @@ "description": "tu: Use right enum for compute active_shader_stages", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "d862a2ebcbf94374e0ab0bd1c63bc45020a2ecef" }, diff --git a/src/freedreno/vulkan/tu_pipeline.c b/src/freedreno/vulkan/tu_pipeline.c index eb770424410..214f96f7c94 100644 --- a/src/freedreno/vulkan/tu_pipeline.c +++ b/src/freedreno/vulkan/tu_pipeline.c @@ -4994,7 +4994,7 @@ tu_compute_pipeline_create(VkDevice device, pipeline->executables_mem_ctx = ralloc_context(NULL); util_dynarray_init(&pipeline->executables, pipeline->executables_mem_ctx); - pipeline->active_stages = VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT; + pipeline->active_stages = VK_SHADER_STAGE_COMPUTE_BIT; struct tu_shader_key key = { }; tu_shader_key_init(&key, stage_info, dev);