mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
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:
parent
f0797c60e5
commit
6e59778e5d
1 changed files with 1 additions and 1 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue