forked from pool/vulkan-validationlayers
Accepting request 1174559 from X11:Wayland
- Update to release SDK-1.3.283.0 OBS-URL: https://build.opensuse.org/request/show/1174559 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vulkan-validationlayers?expand=0&rev=51
This commit is contained in:
commit
db7c457dc4
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:266a20822397d02422f77183ec383278fee2e679ca44aeb916638c5409ddcebf
|
||||
size 5465068
|
3
vulkan-sdk-1.3.283.0.tar.gz
Normal file
3
vulkan-sdk-1.3.283.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05f607f95076b463fab68d2bd9cd7bc0a981602abe5ecaf6fe61648d17e34201
|
||||
size 5230566
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu May 16 12:22:10 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.283.0
|
||||
* Improve format feature error messages
|
||||
* Fix aliasing image bindings with different types
|
||||
* Add VkSwapchainPresentFenceInfoEXT fence sync support
|
||||
* Add proper vkGetDescriptorSetLayoutSupport support
|
||||
* Track lifetime of pipeline libraries
|
||||
* Fix out-of-bounds memory access in BP
|
||||
* Add dynamic state VK_EXT_conservative_rasterization
|
||||
* Add InputAttachmentIndex SPIR-V check
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 21 10:20:14 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: vulkan-validationlayers
|
||||
Version: 1.3.280.0
|
||||
Version: 1.3.283.0
|
||||
Release: 0
|
||||
Summary: Validation layers for Vulkan
|
||||
License: Apache-2.0
|
||||
@ -31,16 +31,16 @@ BuildRequires: gcc-c++
|
||||
%else
|
||||
BuildRequires: gcc11-c++
|
||||
%endif
|
||||
BuildRequires: glslang-devel >= 13.1.0
|
||||
BuildRequires: glslang-devel >= 14.2
|
||||
BuildRequires: memory-constraints
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: python3-base
|
||||
BuildRequires: spirv-headers >= 1.6.1+sdk275+git19
|
||||
BuildRequires: spirv-tools-devel >= 2024.1~rc1
|
||||
BuildRequires: spirv-headers >= 1.6.1+sdk283
|
||||
BuildRequires: spirv-tools-devel >= 2024.1
|
||||
BuildRequires: vulkan-headers
|
||||
BuildRequires: vulkan-utility-libraries-devel >= 1.3.280
|
||||
BuildRequires: vulkan-utility-libraries-devel >= 1.3.283
|
||||
BuildRequires: xxhash-devel
|
||||
BuildRequires: pkgconfig(vulkan) >= 1.3.280
|
||||
BuildRequires: pkgconfig(vulkan) >= 1.3.283
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xcb)
|
||||
Conflicts: vulkan < 1.1
|
||||
|
16
xxhash.diff
16
xxhash.diff
@ -11,10 +11,10 @@ xxhash as well, so that the ABI matches.
|
||||
layers/utils/hash_util.cpp | 5 +----
|
||||
2 files changed, 2 insertions(+), 5 deletions(-)
|
||||
|
||||
Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.280.0/layers/CMakeLists.txt
|
||||
Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.283.0/layers/CMakeLists.txt
|
||||
===================================================================
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.280.0.orig/layers/CMakeLists.txt
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.280.0/layers/CMakeLists.txt
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.283.0.orig/layers/CMakeLists.txt
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.283.0/layers/CMakeLists.txt
|
||||
@@ -29,7 +29,6 @@ target_sources(VkLayer_utils PRIVATE
|
||||
error_message/error_location.h
|
||||
error_message/error_strings.h
|
||||
@ -23,18 +23,18 @@ Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.280.0/layers/CMakeLists.txt
|
||||
${API_TYPE}/generated/error_location_helper.cpp
|
||||
${API_TYPE}/generated/error_location_helper.h
|
||||
${API_TYPE}/generated/feature_requirements_helper.cpp
|
||||
@@ -77,6 +76,7 @@ target_link_libraries(VkLayer_utils PUBL
|
||||
Vulkan::LayerSettings
|
||||
@@ -71,6 +70,7 @@ target_link_libraries(VkLayer_utils PUBL
|
||||
Vulkan::SafeStruct
|
||||
Vulkan::UtilityHeaders
|
||||
${CMAKE_DL_LIBS}
|
||||
+ -lxxhash
|
||||
)
|
||||
target_include_directories(VkLayer_utils SYSTEM PRIVATE external)
|
||||
target_include_directories(VkLayer_utils PUBLIC . ${API_TYPE})
|
||||
Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.280.0/layers/utils/hash_util.cpp
|
||||
Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.283.0/layers/utils/hash_util.cpp
|
||||
===================================================================
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.280.0.orig/layers/utils/hash_util.cpp
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.280.0/layers/utils/hash_util.cpp
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.283.0.orig/layers/utils/hash_util.cpp
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.283.0/layers/utils/hash_util.cpp
|
||||
@@ -23,12 +23,9 @@
|
||||
#define XXH_IMPLEMENTATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user