From: Eric Engestrom Date: Sat, 19 Aug 2023 01:46:25 +0000 (+0100) Subject: v3dv: fix shader stage name in error message X-Git-Tag: upstream/23.3.3~3041 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a1f3d0d73f0908d679bf8a97bafcb2dbc4661fd;p=platform%2Fupstream%2Fmesa.git v3dv: fix shader stage name in error message Fixes: 60145629a2bdcd4e7835 ("v3dv: initial CreateGraphicsPipeline/DestroyPipeline implementation") Signed-off-by: Eric Engestrom Reviewed-by: Alejandro PiƱeiro Part-of: --- diff --git a/src/broadcom/vulkan/v3dv_pipeline.c b/src/broadcom/vulkan/v3dv_pipeline.c index 86c8264..b742ccd 100644 --- a/src/broadcom/vulkan/v3dv_pipeline.c +++ b/src/broadcom/vulkan/v3dv_pipeline.c @@ -1664,7 +1664,7 @@ pipeline_compile_shader_variant(struct v3dv_pipeline_stage *p_stage, if (!qpu_insts) { fprintf(stderr, "Failed to compile %s prog %d NIR to VIR\n", - gl_shader_stage_name(p_stage->stage), + broadcom_shader_stage_name(p_stage->stage), p_stage->program_id); *out_vk_result = VK_ERROR_UNKNOWN; } else {