Files
loongoffice/external/skia/libvulkan-name.patch.1
Luboš Luňák 19bac12d18 do not require Vulkan devel package for Skia
I don't see why this should use libvulkan.so, using libvulkan.so.1
should do as well, and quite possibly any future libvulkan.so.2
could be binary-incompatible anyway.

Change-Id: I46be40da7fbfdcb59c947e6d088820e580cf4c44
2019-11-27 09:55:18 +01:00

14 lines
439 B
Groff

diff --git a/tools/gpu/vk/VkTestUtils.cpp b/tools/gpu/vk/VkTestUtils.cpp
index 5b7e8c29ae..1580136b5c 100644
--- a/tools/gpu/vk/VkTestUtils.cpp
+++ b/tools/gpu/vk/VkTestUtils.cpp
@@ -13,7 +13,7 @@
#if defined _WIN32
#define SK_GPU_TOOLS_VK_LIBRARY_NAME "vulkan-1.dll"
#else
- #define SK_GPU_TOOLS_VK_LIBRARY_NAME "libvulkan.so"
+ #define SK_GPU_TOOLS_VK_LIBRARY_NAME "libvulkan.so.1"
#endif
#endif