1
0
forked from pool/vulkan-loader

Accepting request 836403 from home:mrostecki:branches:X11:Wayland

- Add patch which reverts a commit breaking Steam Play / Proton:
  * 0001-Revert-loader-Return-error-if-layer-loading-failed.patch
  Related issues:
  * https://github.com/ValveSoftware/steam-for-linux/issues/7368
  * https://github.com/KhronosGroup/Vulkan-Loader/issues/472

OBS-URL: https://build.opensuse.org/request/show/836403
OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/vulkan-loader?expand=0&rev=67
This commit is contained in:
Jan Engelhardt 2020-09-23 20:10:24 +00:00 committed by Git OBS Bridge
parent 655fe936c5
commit 632a765ea2
3 changed files with 39 additions and 1 deletions

View File

@ -0,0 +1,28 @@
From 8fdc320b442c45f25044826715058ce3569f3ae1 Mon Sep 17 00:00:00 2001
From: Charles Giessen <charles@lunarg.com>
Date: Thu, 17 Sep 2020 16:31:16 -0600
Subject: [PATCH] Revert "loader: Return error if layer loading failed"
This reverts commit 49648d8fb398ac7d3d8e159939de060b8e759ecf.
Many layers were relying on silently failing to allow 32/64 bit versions
to work on linux. A later commit will properly check for failing layers.
---
loader/loader.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/loader/loader.c b/loader/loader.c
index dd7f7d5b7..4d8865e13 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -5942,7 +5942,7 @@ VkResult loader_create_instance_chain(const VkInstanceCreateInfo *pCreateInfo, c
lib_handle = loaderOpenLayerFile(inst, "instance", layer_prop);
if (!lib_handle) {
- return VK_ERROR_LAYER_NOT_PRESENT;
+ continue;
}
if (NULL == layer_prop->functions.negotiate_layer_interface) {
--
2.28.0

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Sep 23 19:46:21 UTC 2020 - Michał Rostecki <mrostecki@suse.com>
- Add patch which reverts a commit breaking Steam Play / Proton:
* 0001-Revert-loader-Return-error-if-layer-loading-failed.patch
Related issues:
* https://github.com/ValveSoftware/steam-for-linux/issues/7368
* https://github.com/KhronosGroup/Vulkan-Loader/issues/472
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Sep 10 07:47:39 UTC 2020 - Dirk Mueller <dmueller@suse.com> Thu Sep 10 07:47:39 UTC 2020 - Dirk Mueller <dmueller@suse.com>

View File

@ -26,6 +26,7 @@ Group: Development/Libraries/C and C++
URL: https://github.com/KhronosGroup/Vulkan-Loader URL: https://github.com/KhronosGroup/Vulkan-Loader
Source: https://github.com/KhronosGroup/Vulkan-Loader/archive/v%version.tar.gz Source: https://github.com/KhronosGroup/Vulkan-Loader/archive/v%version.tar.gz
Source9: baselibs.conf Source9: baselibs.conf
Patch0: 0001-Revert-loader-Return-error-if-layer-loading-failed.patch
BuildRequires: cmake >= 3.4 BuildRequires: cmake >= 3.4
BuildRequires: gcc-c++ >= 4.8 BuildRequires: gcc-c++ >= 4.8
BuildRequires: pkgconfig BuildRequires: pkgconfig
@ -66,7 +67,7 @@ This subpackage contains the development headers for packages wanting
to make use of Vulkan. to make use of Vulkan.
%prep %prep
%autosetup -n Vulkan-Loader-%version %autosetup -p1 -n Vulkan-Loader-%version
%build %build
%cmake \ %cmake \