Compare commits
No commits in common. "factory" and "factory" have entirely different histories.
@ -1,4 +1,4 @@
|
||||
mtime: 1735007715
|
||||
commit: 293ad8d1bb6a27c607fad8d91b7306e43ba3db7e08204db2ee43fb978411e214
|
||||
mtime: 1721719192
|
||||
commit: 55c8abdce1a69089338efb7df0f1636bb6d26582caf264a6fe1f9ed3568174e5
|
||||
url: https://src.opensuse.org/jengelh/vulkan-validationlayers
|
||||
revision: master
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ef179d2ffcebc070f4a4f52fc4d9626d4f1a71d523f6636bd6918ba870b09dab
|
||||
oid sha256:15af51d72c35b3b2a8e2ad73bc90d6a8155bb8a6688367283bbcf619f989c3f5
|
||||
size 256
|
||||
|
BIN
v1.4.304.tar.gz
(Stored with Git LFS)
BIN
v1.4.304.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
vulkan-sdk-1.3.290.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
vulkan-sdk-1.3.290.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,29 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 24 02:31:56 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to tag 1.4.304
|
||||
* gpuav: Handle VK_PIPELINE_LAYOUT_CREATE_INDEPENDENT_SETS_BIT_EXT
|
||||
* layers: Add multisampledRenderToSingleSampled check
|
||||
* layers: Add Shader Debug Info into core validation
|
||||
* layers: Added present fences to thread safety checks
|
||||
* layers: Fix present fence not retiring present semaphores
|
||||
* gpuav: Handle VK_PIPELINE_COMPILE_REQUIRED
|
||||
* layers: Add Queue Support for Shader Object
|
||||
* gpu: Add atomics for BDA checks
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 8 18:22:10 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.296
|
||||
* spirv: Create dedicated InjectConditionalFunctionPass class
|
||||
* layers: Add VK_EXT_layer_settings param validation
|
||||
* layers: Add VK_KHR_pipeline_binary validation
|
||||
* sync: Add support for timeline semaphores
|
||||
* sync: Add stats for signals and unresolved batches
|
||||
* layers: Add VK_EXT_depth_clamp_control,
|
||||
VK_EXT_device_generated_commands,
|
||||
VK_KHR_compute_shader_derivatives
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 23 07:15:56 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@ -17,26 +17,26 @@
|
||||
|
||||
|
||||
Name: vulkan-validationlayers
|
||||
Version: 1.4.304
|
||||
Version: 1.3.290
|
||||
Release: 0
|
||||
Summary: Validation layers for Vulkan
|
||||
License: Apache-2.0
|
||||
Group: Development/Tools/Other
|
||||
URL: https://github.com/KhronosGroup/Vulkan-ValidationLayers
|
||||
Source: https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v%version.tar.gz
|
||||
Source: https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/refs/tags/vulkan-sdk-%version.0.tar.gz
|
||||
Patch2: xxhash.diff
|
||||
BuildRequires: cmake >= 3.7.12
|
||||
%if 0%{?suse_version} && 0%{?suse_version} < 1600
|
||||
BuildRequires: gcc12-c++
|
||||
%if 0%{?suse_version} >= 1599
|
||||
BuildRequires: gcc-c++
|
||||
%else
|
||||
BuildRequires: c++_compiler
|
||||
BuildRequires: gcc11-c++
|
||||
%endif
|
||||
BuildRequires: glslang-devel >= 15.1
|
||||
BuildRequires: glslang-devel >= 14.3
|
||||
BuildRequires: memory-constraints
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: python3-base
|
||||
BuildRequires: spirv-headers >= 1.6.4+sdk303
|
||||
BuildRequires: spirv-tools-devel >= 2024.4~rc2
|
||||
BuildRequires: spirv-headers >= 1.6.1+sdk290
|
||||
BuildRequires: spirv-tools-devel >= 2024.3
|
||||
BuildRequires: vulkan-headers >= %version
|
||||
BuildRequires: vulkan-utility-libraries-devel >= %version
|
||||
BuildRequires: xxhash-devel
|
||||
@ -52,7 +52,7 @@ Vulkan is a 3D graphics and compute API.
|
||||
This package contains the Khronos official Vulkan validation layers.
|
||||
|
||||
%prep
|
||||
%autosetup -n Vulkan-ValidationLayers-%version -p1
|
||||
%autosetup -n Vulkan-ValidationLayers-vulkan-sdk-%version.0 -p1
|
||||
perl -i -pe 's{\@PACKAGE_VERSION\@}{%version}' CMakeLists.txt */CMakeLists.txt
|
||||
|
||||
%build
|
||||
@ -63,10 +63,10 @@ cat >gxx <<-EOF
|
||||
#!/bin/sh
|
||||
exec g++ "\$@" -lpthread
|
||||
EOF
|
||||
%if 0%{?suse_version} && 0%{?suse_version} < 1600
|
||||
%if 0%{?suse_version} < 1599
|
||||
cat >gxx <<-EOF
|
||||
#!/bin/sh
|
||||
exec g++-12 "\$@" -lpthread
|
||||
exec g++-11 "\$@" -lpthread
|
||||
EOF
|
||||
%endif
|
||||
chmod a+x gxx
|
||||
|
18
xxhash.diff
18
xxhash.diff
@ -11,19 +11,19 @@ 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.296.0/layers/CMakeLists.txt
|
||||
Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.290.0/layers/CMakeLists.txt
|
||||
===================================================================
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.296.0.orig/layers/CMakeLists.txt
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.296.0/layers/CMakeLists.txt
|
||||
@@ -30,7 +30,6 @@ target_sources(VkLayer_utils PRIVATE
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.290.0.orig/layers/CMakeLists.txt
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.290.0/layers/CMakeLists.txt
|
||||
@@ -29,7 +29,6 @@ target_sources(VkLayer_utils PRIVATE
|
||||
error_message/error_location.h
|
||||
error_message/error_strings.h
|
||||
error_message/record_object.h
|
||||
error_message/log_message_type.h
|
||||
- external/xxhash.h
|
||||
external/inplace_function.h
|
||||
${API_TYPE}/generated/error_location_helper.cpp
|
||||
${API_TYPE}/generated/error_location_helper.h
|
||||
@@ -75,6 +74,7 @@ target_link_libraries(VkLayer_utils PUBL
|
||||
@@ -74,6 +73,7 @@ target_link_libraries(VkLayer_utils PUBL
|
||||
Vulkan::SafeStruct
|
||||
Vulkan::UtilityHeaders
|
||||
${CMAKE_DL_LIBS}
|
||||
@ -31,10 +31,10 @@ Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.296.0/layers/CMakeLists.txt
|
||||
)
|
||||
target_include_directories(VkLayer_utils SYSTEM PRIVATE external)
|
||||
target_include_directories(VkLayer_utils PUBLIC . ${API_TYPE})
|
||||
Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.296.0/layers/utils/hash_util.cpp
|
||||
Index: Vulkan-ValidationLayers-vulkan-sdk-1.3.290.0/layers/utils/hash_util.cpp
|
||||
===================================================================
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.296.0.orig/layers/utils/hash_util.cpp
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.296.0/layers/utils/hash_util.cpp
|
||||
--- Vulkan-ValidationLayers-vulkan-sdk-1.3.290.0.orig/layers/utils/hash_util.cpp
|
||||
+++ Vulkan-ValidationLayers-vulkan-sdk-1.3.290.0/layers/utils/hash_util.cpp
|
||||
@@ -23,12 +23,9 @@
|
||||
#define XXH_IMPLEMENTATION
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user