[Vulkan] Fix basePipelineIndex signedness

This commit is contained in:
Triang3l
2022-03-28 21:57:44 +03:00
parent 3a07559df9
commit 0f3207d019
2 changed files with 2 additions and 2 deletions

View File

@@ -2535,7 +2535,7 @@ VkPipeline VulkanPresenter::CreateGuestOutputPaintPipeline(
pipeline_create_info.renderPass = render_pass;
pipeline_create_info.subpass = 0;
pipeline_create_info.basePipelineHandle = VK_NULL_HANDLE;
pipeline_create_info.basePipelineIndex = UINT32_MAX;
pipeline_create_info.basePipelineIndex = -1;
const VulkanProvider::DeviceFunctions& dfn = provider_.dfn();
VkDevice device = provider_.device();