Accepting request 1233210 from X11:Wayland
- Update to tag 1.4.304 OBS-URL: https://build.opensuse.org/request/show/1233210 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vulkan-validationlayers?expand=0&rev=54
This commit is contained in:
commit
52c04f03fb
@ -1,4 +1,4 @@
|
|||||||
mtime: 1728416065
|
mtime: 1735007715
|
||||||
commit: f1eda1823509fca21cfad54a6ef05cc702badeaca482d4a938cf759c581f9dad
|
commit: 293ad8d1bb6a27c607fad8d91b7306e43ba3db7e08204db2ee43fb978411e214
|
||||||
url: https://src.opensuse.org/jengelh/vulkan-validationlayers
|
url: https://src.opensuse.org/jengelh/vulkan-validationlayers
|
||||||
revision: master
|
revision: master
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:a1a361b81599b63bf5ca0fe41af43a40d090a17df315184b3d59173115eb2f75
|
oid sha256:ef179d2ffcebc070f4a4f52fc4d9626d4f1a71d523f6636bd6918ba870b09dab
|
||||||
size 256
|
size 256
|
||||||
|
BIN
v1.4.304.tar.gz
(Stored with Git LFS)
Normal file
BIN
v1.4.304.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vulkan-sdk-1.3.296.0.tar.gz
(Stored with Git LFS)
BIN
vulkan-sdk-1.3.296.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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>
|
Tue Oct 8 18:22:10 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -17,13 +17,13 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: vulkan-validationlayers
|
Name: vulkan-validationlayers
|
||||||
Version: 1.3.296
|
Version: 1.4.304
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Validation layers for Vulkan
|
Summary: Validation layers for Vulkan
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
URL: https://github.com/KhronosGroup/Vulkan-ValidationLayers
|
URL: https://github.com/KhronosGroup/Vulkan-ValidationLayers
|
||||||
Source: https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/refs/tags/vulkan-sdk-%version.0.tar.gz
|
Source: https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v%version.tar.gz
|
||||||
Patch2: xxhash.diff
|
Patch2: xxhash.diff
|
||||||
BuildRequires: cmake >= 3.7.12
|
BuildRequires: cmake >= 3.7.12
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} < 1600
|
%if 0%{?suse_version} && 0%{?suse_version} < 1600
|
||||||
@ -31,12 +31,12 @@ BuildRequires: gcc12-c++
|
|||||||
%else
|
%else
|
||||||
BuildRequires: c++_compiler
|
BuildRequires: c++_compiler
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: glslang-devel >= 14.3
|
BuildRequires: glslang-devel >= 15.1
|
||||||
BuildRequires: memory-constraints
|
BuildRequires: memory-constraints
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
BuildRequires: python3-base
|
BuildRequires: python3-base
|
||||||
BuildRequires: spirv-headers >= 1.6.4+sdk296
|
BuildRequires: spirv-headers >= 1.6.4+sdk303
|
||||||
BuildRequires: spirv-tools-devel >= 2024.3
|
BuildRequires: spirv-tools-devel >= 2024.4~rc2
|
||||||
BuildRequires: vulkan-headers >= %version
|
BuildRequires: vulkan-headers >= %version
|
||||||
BuildRequires: vulkan-utility-libraries-devel >= %version
|
BuildRequires: vulkan-utility-libraries-devel >= %version
|
||||||
BuildRequires: xxhash-devel
|
BuildRequires: xxhash-devel
|
||||||
@ -52,7 +52,7 @@ Vulkan is a 3D graphics and compute API.
|
|||||||
This package contains the Khronos official Vulkan validation layers.
|
This package contains the Khronos official Vulkan validation layers.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n Vulkan-ValidationLayers-vulkan-sdk-%version.0 -p1
|
%autosetup -n Vulkan-ValidationLayers-%version -p1
|
||||||
perl -i -pe 's{\@PACKAGE_VERSION\@}{%version}' CMakeLists.txt */CMakeLists.txt
|
perl -i -pe 's{\@PACKAGE_VERSION\@}{%version}' CMakeLists.txt */CMakeLists.txt
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
Reference in New Issue
Block a user