Skip to content

Commit 8dc635a

Browse files
gfx: return error when vulkan fails to create buffer/pipeline (shader-slang#3741)
* return buffer creation errors in vulkan * return pipeline creation errors in vulkan --------- Co-authored-by: Yong He <yonghe@outlook.com>
1 parent 1c4e1ac commit 8dc635a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tools/gfx/vulkan/vk-buffer.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Result VKBufferHandleRAII::init(
4141
bufferCreateInfo.pNext = &externalMemoryBufferCreateInfo;
4242
}
4343

44-
SLANG_VK_CHECK(api.vkCreateBuffer(api.m_device, &bufferCreateInfo, nullptr, &m_buffer));
44+
SLANG_VK_RETURN_ON_FAIL(api.vkCreateBuffer(api.m_device, &bufferCreateInfo, nullptr, &m_buffer));
4545

4646
VkMemoryRequirements memoryReqs = {};
4747
api.vkGetBufferMemoryRequirements(api.m_device, m_buffer, &memoryReqs);
@@ -87,8 +87,8 @@ Result VKBufferHandleRAII::init(
8787
allocateInfo.pNext = &flagInfo;
8888
}
8989

90-
SLANG_VK_CHECK(api.vkAllocateMemory(api.m_device, &allocateInfo, nullptr, &m_memory));
91-
SLANG_VK_CHECK(api.vkBindBufferMemory(api.m_device, m_buffer, m_memory, 0));
90+
SLANG_VK_RETURN_ON_FAIL(api.vkAllocateMemory(api.m_device, &allocateInfo, nullptr, &m_memory));
91+
SLANG_VK_RETURN_ON_FAIL(api.vkBindBufferMemory(api.m_device, m_buffer, m_memory, 0));
9292

9393
return SLANG_OK;
9494
}

tools/gfx/vulkan/vk-pipeline-state.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ Result PipelineStateImpl::createVKGraphicsPipelineState()
284284
}
285285
else
286286
{
287-
SLANG_VK_CHECK(m_device->m_api.vkCreateGraphicsPipelines(
287+
SLANG_VK_RETURN_ON_FAIL(m_device->m_api.vkCreateGraphicsPipelines(
288288
m_device->m_device, pipelineCache, 1, &pipelineInfo, nullptr, &m_pipeline));
289289
}
290290

@@ -316,7 +316,7 @@ Result PipelineStateImpl::createVKComputePipelineState()
316316
else
317317
{
318318
VkPipelineCache pipelineCache = VK_NULL_HANDLE;
319-
SLANG_VK_CHECK(m_device->m_api.vkCreateComputePipelines(
319+
SLANG_VK_RETURN_ON_FAIL(m_device->m_api.vkCreateComputePipelines(
320320
m_device->m_device, pipelineCache, 1, &computePipelineInfo, nullptr, &m_pipeline));
321321
}
322322
return SLANG_OK;
@@ -455,7 +455,7 @@ Result RayTracingPipelineStateImpl::createVKRayTracingPipelineState()
455455
}
456456

457457
VkPipelineCache pipelineCache = VK_NULL_HANDLE;
458-
SLANG_VK_CHECK(m_device->m_api.vkCreateRayTracingPipelinesKHR(
458+
SLANG_VK_RETURN_ON_FAIL(m_device->m_api.vkCreateRayTracingPipelinesKHR(
459459
m_device->m_device,
460460
VK_NULL_HANDLE,
461461
pipelineCache,

0 commit comments

Comments
 (0)