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

Commit 43c8e1bf authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Correct VulkanBackendContext::fMaxAPIVersion passed to Skia" into main

parents a9836bdb 17d9cbb2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -534,7 +534,7 @@ void VulkanInterface::init(bool protectedContent) {
    mDevice = device;
    mQueue = graphicsQueue;
    mQueueIndex = graphicsQueueIndex;
    mApiVersion = physicalDeviceApiVersion;
    mApiVersion = std::min(physicalDeviceApiVersion, appInfo.apiVersion);
    // grExtensions already constructed
    // feature pointers already constructed
    mGrGetProc = sGetProc;