summaryrefslogtreecommitdiffstats
path: root/drivers/vulkan
diff options
context:
space:
mode:
authorwarriormaster12 <streng.alexander@outlook.com>2023-12-21 22:32:58 +0200
committerwarriormaster12 <streng.alexander@outlook.com>2023-12-21 22:32:58 +0200
commite729d511df8398d27cb341303854a0f83af62569 (patch)
tree3cc212ded57220ecdc1ffb101cb3403bc12a470b /drivers/vulkan
parent9d1cbab1c432b6f1d66ec939445bec68b6af519e (diff)
downloadredot-engine-e729d511df8398d27cb341303854a0f83af62569.tar.gz
Fix wrong error message when graphics pipeline creation fails
Diffstat (limited to 'drivers/vulkan')
-rw-r--r--drivers/vulkan/rendering_device_driver_vulkan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vulkan/rendering_device_driver_vulkan.cpp b/drivers/vulkan/rendering_device_driver_vulkan.cpp
index 911efa7755..e18161c974 100644
--- a/drivers/vulkan/rendering_device_driver_vulkan.cpp
+++ b/drivers/vulkan/rendering_device_driver_vulkan.cpp
@@ -2920,7 +2920,7 @@ RDD::PipelineID RenderingDeviceDriverVulkan::render_pipeline_create(
VkPipeline vk_pipeline = VK_NULL_HANDLE;
VkResult err = vkCreateGraphicsPipelines(vk_device, pipelines_cache.vk_cache, 1, &pipeline_create_info, nullptr, &vk_pipeline);
- ERR_FAIL_COND_V_MSG(err, PipelineID(), "vkCreateComputePipelines failed with error " + itos(err) + ".");
+ ERR_FAIL_COND_V_MSG(err, PipelineID(), "vkCreateGraphicsPipelines failed with error " + itos(err) + ".");
return PipelineID(vk_pipeline);
}