radv: fix capturing RT pipelines that return VK_OPERATION_DEFERRED_KHR for RGP
This isn't an error. Cc: mesa-stable Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32683>
This commit is contained in:
committed by
Marge Bot
parent
f0797c60e5
commit
6e59778e5d
@@ -1760,7 +1760,7 @@ sqtt_CreateRayTracingPipelinesKHR(VkDevice _device, VkDeferredOperationKHR defer
|
||||
|
||||
result = device->layer_dispatch.rgp.CreateRayTracingPipelinesKHR(_device, deferredOperation, pipelineCache, count,
|
||||
pCreateInfos, pAllocator, pPipelines);
|
||||
if (result != VK_SUCCESS)
|
||||
if (result != VK_SUCCESS && result != VK_OPERATION_DEFERRED_KHR)
|
||||
return result;
|
||||
|
||||
for (unsigned i = 0; i < count; i++) {
|
||||
|
||||
Reference in New Issue
Block a user