- Update to release 1.3.231.0

OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/vulkan-tools?expand=0&rev=93
This commit is contained in:
Jan Engelhardt 2022-10-24 19:57:38 +00:00 committed by Git OBS Bridge
parent 01f25174fd
commit 0083608659
5 changed files with 56 additions and 7 deletions

View File

@ -0,0 +1,41 @@
From 8d2d3e22d684540fdc5a76c15e456fc2fd11e4b7 Mon Sep 17 00:00:00 2001
From: Juan Ramos <juan@lunarg.com>
Date: Wed, 19 Oct 2022 16:51:58 -0600
Subject: [PATCH] cubepp: Fix presentKHR assert
Currently cubepp fails on Debug builds and triggers an assert.
This avoids the assert by calling the appropriate presentKHR.
---
cube/cube.cpp | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/cube/cube.cpp b/cube/cube.cpp
index aa3d7b20..90000789 100644
--- a/cube/cube.cpp
+++ b/cube/cube.cpp
@@ -706,14 +706,15 @@ void Demo::draw() {
VERIFY(change_owner_result == vk::Result::eSuccess);
}
+ const auto presentInfo = vk::PresentInfoKHR()
+ .setWaitSemaphores(separate_present_queue ? image_ownership_semaphores[frame_index]
+ : draw_complete_semaphores[frame_index])
+ .setSwapchains(swapchain)
+ .setImageIndices(current_buffer);
+
// If we are using separate queues we have to wait for image ownership,
// otherwise wait for draw complete
- auto present_result =
- present_queue.presentKHR(vk::PresentInfoKHR()
- .setWaitSemaphores(separate_present_queue ? image_ownership_semaphores[frame_index]
- : draw_complete_semaphores[frame_index])
- .setSwapchains(swapchain)
- .setImageIndices(current_buffer));
+ auto present_result = present_queue.presentKHR(&presentInfo);
frame_index += 1;
frame_index %= FRAME_LAG;
if (present_result == vk::Result::eErrorOutOfDateKHR) {
--
2.38.0

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:939d623504cba0b8de2d117eef70dc45f3c21fa05103554d6565e0e23a7f5e04
size 868481

3
v1.3.231.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:379547b11eb65638cf5d83b260827a7b2dbfa7f31ef4002f8bfdca7bf3c89a8f
size 876522

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Oct 24 19:54:24 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
- Update to release 1.3.231.0
* Adapt to Vulkan 231 API, but otherwise no interesting changes
- Add 0001-cubepp-Fix-presentKHR-assert.patch
-------------------------------------------------------------------
Mon Aug 22 22:42:50 UTC 2022 - Jan Engelhardt <jengelh@inai.de>

View File

@ -17,20 +17,21 @@
Name: vulkan-tools
Version: 1.3.224.0
Version: 1.3.231
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/sdk-%version.tar.gz
Source: https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/v%version.tar.gz
Patch1: 0001-cubepp-Fix-presentKHR-assert.patch
BuildRequires: cmake >= 3.4
BuildRequires: gcc-c++ >= 4.8
BuildRequires: glslang-devel >= 8.13.3743
BuildRequires: pkg-config
BuildRequires: python3-base
BuildRequires: pkgconfig(vulkan) >= 1.3.211
BuildRequires: pkgconfig(vulkan) >= 1.3.231
BuildRequires: pkgconfig(wayland-protocols)
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xcb)
@ -45,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-sdk-%version
%autosetup -p1 -n Vulkan-Tools-%version
%build
mkdir -p glslang/bin