skia: fix build

/home/julien/lo/libreoffice/workdir/UnpackedTarball/skia/tools/window/VulkanWindowContext.cpp:520:24: error: no member named 'fDestroyDebugUtilsMessengerEXT' in 'skwindow::internal::VulkanWindowContext::Shared'
520 | fGlobalShared->fDestroyDebugUtilsMessengerEXT(fGlobalShared->fInstance, fGlobalShared->fDebugMessenger, nullptr);
| ~~~^
1 error generated.

after
commit 027c65e72e
Author: Xisco Fauli <xiscofauli@libreoffice.org>
Date:   Wed Jul 2 14:31:20 2025 +0200

    skia: upgrade to m139

Change-Id: I8413d320733208628b773ea192c9df65c9f03989
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187374
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
This commit is contained in:
Xisco Fauli
2025-07-04 10:55:31 +02:00
parent c8b26350d9
commit fac4406e3a

View File

@ -339,7 +339,7 @@ diff -ur skia.org/tools/window/VulkanWindowContext.cpp skia/tools/window/VulkanW
+ GET_PROC_GLOBAL(DestroyInstance);
+ GET_DEV_PROC_GLOBAL(DestroyDevice);
+ if (fGlobalShared->fDebugMessenger != VK_NULL_HANDLE) {
+ GET_PROC_GLOBAL(DestroyDebugReportCallbackEXT);
+ GET_PROC_GLOBAL(DestroyDebugUtilsMessengerEXT);
}
+
+ backendContext.fMemoryAllocator =
@ -744,7 +744,7 @@ diff -ur skia.org/tools/window/VulkanWindowContext.h skia/tools/window/VulkanWin
+ {
+ PFN_vkDestroyInstance fDestroyInstance = nullptr;
+ PFN_vkDestroyDevice fDestroyDevice = nullptr;
+ PFN_vkDestroyDebugReportCallbackEXT fDestroyDebugReportCallbackEXT = nullptr;
+ PFN_vkDestroyDebugUtilsMessengerEXT fDestroyDebugUtilsMessengerEXT = nullptr;
+
+ VkInstance fInstance = VK_NULL_HANDLE;
+ VkPhysicalDevice fPhysicalDevice = VK_NULL_HANDLE;