Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 702beb4d authored by Yiwei Zhang's avatar Yiwei Zhang
Browse files

Vulkan: Improve error translation in CreateSwapChainKHR

Set VK_ERROR_OUT_OF_DEVICE_MEMORY in case the cause of the failure from
dequeueBuffer is an actual ENOMEM situation. Otherwise set
VK_ERROR_SURFACE_LOST_KHR as catch-all.

Bug: 145331195
Test: dEQP-VK.wsi.android.swapchain.create.image_extent
Change-Id: I8e7b4af3133e2a851beeda3618e24ca86279d317
parent 042d728d
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -1311,9 +1311,16 @@ VkResult CreateSwapchainKHR(VkDevice device,
                                            &img.dequeue_fence);
        if (err != 0) {
            ALOGE("dequeueBuffer[%u] failed: %s (%d)", i, strerror(-err), err);
            switch (-err) {
                case ENOMEM:
                    result = VK_ERROR_OUT_OF_DEVICE_MEMORY;
                    break;
                default:
                    result = VK_ERROR_SURFACE_LOST_KHR;
                    break;
            }
            break;
        }
        img.buffer = buffer;
        img.dequeued = true;