mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
While here: - fix hang when using vulkan graphics backend. This is due to FreeBSD mesa- ports, currently on version 24, only supporting vulkan api version 1.3. - add BSD3CLAUSE to LICENSE and LICENSE_FILE. - remove defunct 2014 Debian man page. The fetch link for the man page is broken. There's no longer a ppsspp package for Debian. Changelog: https://www.ppsspp.org/news/release-1.19/ PR: 287409 Reported by: Kevin Reinholz <kreinholz@gmail.com> (maintainer)
11 lines
686 B
C++
11 lines
686 B
C++
--- Common/GPU/Vulkan/VulkanContext.cpp.orig 2025-06-11 21:04:20 UTC
|
|
+++ Common/GPU/Vulkan/VulkanContext.cpp
|
|
@@ -119,7 +119,7 @@ VkResult VulkanContext::CreateInstance(const CreateInf
|
|
if (vkEnumerateInstanceVersion) {
|
|
vkEnumerateInstanceVersion(&vulkanInstanceApiVersion_);
|
|
vulkanInstanceApiVersion_ &= 0xFFFFF000; // Remove patch version.
|
|
- vulkanInstanceApiVersion_ = std::min(VK_API_VERSION_1_4, vulkanInstanceApiVersion_);
|
|
+ vulkanInstanceApiVersion_ = std::min(VK_API_VERSION_1_3, vulkanInstanceApiVersion_);
|
|
std::string versionString = FormatAPIVersion(vulkanInstanceApiVersion_);
|
|
INFO_LOG(Log::G3D, "Detected Vulkan API version: %s", versionString.c_str());
|
|
}
|