Compare commits
11 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 17eb99ebe9 | |||
| 666b85e8e3 | |||
| 4f8fab8d8b | |||
| aeba815071 | |||
| 7381c1d02a | |||
| 54496bc767 | |||
| 76a7fb791b | |||
| 9d34012fd0 | |||
| c52efca805 | |||
| 87d26be6c9 | |||
| 656e64931f |
35
0001-vulkaninfo-Fix-running-under-RenderDoc.patch
Normal file
35
0001-vulkaninfo-Fix-running-under-RenderDoc.patch
Normal file
@@ -0,0 +1,35 @@
|
||||
From 54587dc9ccc739b1b2649d71de20583c3e12ddcb Mon Sep 17 00:00:00 2001
|
||||
From: Danylo Piliaiev <dpiliaiev@igalia.com>
|
||||
Date: Mon, 8 Dec 2025 14:22:19 +0100
|
||||
Subject: [PATCH] vulkaninfo: Fix running under RenderDoc
|
||||
|
||||
RenderDoc allows only one simultaneously existing logical device, and
|
||||
vulkaninfo doesn't have a real need to keep them simultaneously alive.
|
||||
|
||||
Running vulkaninfo under RenderDoc is useful to get a Vulkan profile
|
||||
that will represent the RenderDoc capabilities on the current GPU,
|
||||
which can be useful to, e.g., make a gfxreconstruct trace that will be
|
||||
later capturable by RenderDoc.
|
||||
|
||||
Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com>
|
||||
---
|
||||
vulkaninfo/vulkaninfo.h | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/vulkaninfo/vulkaninfo.h b/vulkaninfo/vulkaninfo.h
|
||||
index eaf4331a..217c1337 100644
|
||||
--- a/vulkaninfo/vulkaninfo.h
|
||||
+++ b/vulkaninfo/vulkaninfo.h
|
||||
@@ -1814,6 +1814,9 @@ struct AppGpu {
|
||||
|
||||
// Video //
|
||||
video_profiles = enumerate_supported_video_profiles(*this);
|
||||
+
|
||||
+ vkDestroyDevice(dev, nullptr);
|
||||
+ dev = VK_NULL_HANDLE;
|
||||
}
|
||||
~AppGpu() { vkDestroyDevice(dev, nullptr); }
|
||||
|
||||
--
|
||||
2.52.0
|
||||
|
||||
BIN
v1.4.335.tar.gz
LFS
Normal file
BIN
v1.4.335.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:586f3a1178b2a0635562c64b1152a8646dd3b50e03cd8320a6cfaee5b9d46310
|
||||
size 753022
|
||||
@@ -1,3 +1,69 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 23:18:24 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 1.4.335
|
||||
* vulkaninfo: Support promoted structs in Profile JSON output
|
||||
- Add 0001-vulkaninfo-Fix-running-under-RenderDoc.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 7 10:04:08 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to tag SDK-1.4.328.0
|
||||
* vulkaninfo: Default init VkVideoCapabilitiesKHR
|
||||
* cube: Fix auto WSI platform selection on QNX
|
||||
- Delete cmake.patch (merged)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 17 06:13:32 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to tag SDK-1.4.321.0
|
||||
* cube: prefer Wayland over X11 when available
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 6 15:30:16 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Add cmake.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 5 19:09:31 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Remove unused dependency on vulkan-volk
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 18 04:29:18 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to tag SDK-1.4.313.0
|
||||
* vkcubepp: Support protected output
|
||||
* cube: Only count non-minimized frames
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 13 16:41:22 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to tag SDK-1.4.309.0
|
||||
* vulkaninfo: Add video profiles support
|
||||
* cube: Correctly apply sRGB OETF/EOTF
|
||||
* icd: Add VkPhysicalDeviceMaintenance3Properties
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 24 01:33:04 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to tag 1.4.304
|
||||
* icd: add support for AV1 encode and QP maps
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 8 17:13:46 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.296
|
||||
* vulkaninfo: Add --show-promoted-structs option
|
||||
* vulkaninfo: Only iterate 2-call idiom when needed
|
||||
* vulkaninfo: Correctly query per-surface queue support
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 23 05:26:36 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release SDK-1.3.290
|
||||
* cube: Fix incremental present on swapchain recreate
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 16 12:21:39 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package vulkan-tools
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,21 +17,21 @@
|
||||
|
||||
|
||||
Name: vulkan-tools
|
||||
Version: 1.3.283.0
|
||||
Version: 1.4.335
|
||||
Release: 0
|
||||
Summary: Diagnostic utilities for Vulkan
|
||||
License: Apache-2.0
|
||||
Group: Development/Tools/Other
|
||||
URL: https://github.com/KhronosGroup/Vulkan-Tools
|
||||
Source: https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/vulkan-sdk-%version.tar.gz
|
||||
Source: https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/v%version.tar.gz
|
||||
Source9: baselibs.conf
|
||||
Patch1: 0001-vulkaninfo-Fix-running-under-RenderDoc.patch
|
||||
BuildRequires: cmake >= 3.17
|
||||
BuildRequires: gcc-c++ >= 4.8
|
||||
BuildRequires: glslang-devel
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: python3-base
|
||||
BuildRequires: vulkan-volk-devel >= 1.3.283
|
||||
BuildRequires: pkgconfig(vulkan) >= 1.3.283
|
||||
BuildRequires: pkgconfig(vulkan) >= %version
|
||||
BuildRequires: pkgconfig(wayland-protocols)
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xcb)
|
||||
@@ -46,7 +46,7 @@ graphics applications such as games and interactive media.
|
||||
This package contains the Khronos official Vulkan tools and utilities.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n Vulkan-Tools-vulkan-sdk-%version
|
||||
%autosetup -n Vulkan-Tools-%version -p1
|
||||
|
||||
%build
|
||||
mkdir -p glslang/bin
|
||||
|
||||
Reference in New Issue
Block a user