Compare commits
3 Commits
f997b88ee4
...
1.1
Author | SHA256 | Date | |
---|---|---|---|
061eaaa2aa | |||
9e190733ff | |||
65e97b2af3 |
BIN
v1.3.247.tar.gz
(Stored with Git LFS)
BIN
v1.3.247.tar.gz
(Stored with Git LFS)
Binary file not shown.
@@ -1,3 +1,61 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 23 05:06:41 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.290
|
||||
* Remove faulty fallback for unknown functions
|
||||
* tests: Allow test ICD to handle NULL pApplicationInfo
|
||||
* Fix preloaded ICDs being freed with custom allocators
|
||||
* Fix RegCloseKey exeption when double-closing hKeys
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 16 12:13:57 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.283.0
|
||||
* Bugfixes for Windows
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 20 22:04:57 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.280.0
|
||||
* Bugfixes for Windows
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 18 19:22:17 UTC 2024 - Nicolas FORMICHELLA <stigpro@outlook.fr>
|
||||
|
||||
- Update to release SDK-1.3.275.0
|
||||
* Instance extensions unsupported by physical devices now return
|
||||
ERROR_EXTENSION_NOT_PRESENT
|
||||
* Unload drivers which report 0 physical devices
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 8 12:00:30 UTC 2024 - Callum Farmer <gmbr3@opensuse.org>
|
||||
|
||||
- Align the fallback XDG config dirs with SUSE spec in-case it
|
||||
can't read it from the environment
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 27 03:50:42 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.268.0
|
||||
* Add VK_LOADER_LAYERS_ALLOW environment variable.
|
||||
* Add Debug extension support to test layer
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 22 09:04:01 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.261.0
|
||||
* Warn when ICD Manifest version differs from
|
||||
vkEnumerateInstanceVersion
|
||||
* Enable VK_KHR_maintenance_5 support
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 30 21:36:00 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.250.0
|
||||
* No changes over 1.3.247 [SDK-250 is a branch of regular-243
|
||||
with some cherry-picks bringing it to roughly regular-247;
|
||||
there is little relation to regular-250]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 19 20:09:39 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package vulkan-loader
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -19,13 +19,13 @@
|
||||
# Prefer to go with just /^sdk-.*/ tags
|
||||
%define lname libvulkan1
|
||||
Name: vulkan-loader
|
||||
Version: 1.3.247
|
||||
Version: 1.3.290
|
||||
Release: 0
|
||||
Summary: Reference ICD loader for Vulkan
|
||||
License: Apache-2.0
|
||||
Group: Development/Libraries/C and C++
|
||||
URL: https://github.com/KhronosGroup/Vulkan-Loader
|
||||
Source: https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v%version.tar.gz
|
||||
Source: https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/vulkan-sdk-%version.0.tar.gz
|
||||
Source9: baselibs.conf
|
||||
BuildRequires: cmake >= 3.4
|
||||
BuildRequires: gcc-c++ >= 4.8
|
||||
@@ -35,6 +35,7 @@ BuildRequires: vulkan-headers >= %version
|
||||
BuildRequires: pkgconfig(pciaccess)
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xcb)
|
||||
# vulkan-headers ain't the same as pkgconfig(vulkan), surprise
|
||||
|
||||
%description
|
||||
Vulkan is a 3D graphics and compute API providing cross-platform
|
||||
@@ -67,21 +68,21 @@ This subpackage contains the development headers for packages wanting
|
||||
to make use of Vulkan.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n Vulkan-Loader-%version
|
||||
%autosetup -p1 -n Vulkan-Loader-vulkan-sdk-%version.0
|
||||
|
||||
%build
|
||||
%cmake \
|
||||
-DVulkanHeaders_INCLUDE_DIR:PATH="%_includedir" \
|
||||
-DVulkanRegistry_DIR:PATH="%_datadir/vulkan/registry" \
|
||||
-DLIB_SUFFIX:STRING=""
|
||||
-DLIB_SUFFIX:STRING="" \
|
||||
-DFALLBACK_CONFIG_DIRS="/etc/xdg:/usr/local/etc/xdg:/usr/etc/xdg"
|
||||
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%post -n %lname -p /sbin/ldconfig
|
||||
%postun -n %lname -p /sbin/ldconfig
|
||||
%ldconfig_scriptlets -n %lname
|
||||
|
||||
%files -n libvulkan1
|
||||
%license LICENSE.txt
|
||||
@@ -90,5 +91,6 @@ to make use of Vulkan.
|
||||
%files -n vulkan-devel
|
||||
%_libdir/libvulkan.so
|
||||
%_libdir/pkgconfig/vulkan.pc
|
||||
%_libdir/cmake/
|
||||
|
||||
%changelog
|
||||
|
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.
Reference in New Issue
Block a user