Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package vulkan-validationlayers for
openSUSE:Factory checked in at 2024-01-03 12:26:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vulkan-validationlayers (Old)
and /work/SRC/openSUSE:Factory/.vulkan-validationlayers.new.28375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vulkan-validationlayers"
Wed Jan 3 12:26:11 2024 rev:48 rq:1135801 version:1.3.268.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/vulkan-validationlayers/vulkan-validationlayers.changes
2023-11-16 20:27:47.238656461 +0100
+++
/work/SRC/openSUSE:Factory/.vulkan-validationlayers.new.28375/vulkan-validationlayers.changes
2024-01-03 12:26:17.502335014 +0100
@@ -1,0 +2,5 @@
+Sun Dec 31 00:23:33 UTC 2023 - Jan Engelhardt <[email protected]>
+
+- Add glslang14.diff
+
+-------------------------------------------------------------------
New:
----
glslang14.diff
BETA DEBUG BEGIN:
New:
- Add glslang14.diff
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ vulkan-validationlayers.spec ++++++
--- /var/tmp/diff_new_pack.Yx3skK/_old 2024-01-03 12:26:18.246362184 +0100
+++ /var/tmp/diff_new_pack.Yx3skK/_new 2024-01-03 12:26:18.246362184 +0100
@@ -25,6 +25,7 @@
URL: https://github.com/KhronosGroup/Vulkan-ValidationLayers
Source:
https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/refs/tags/vulkan-sdk-%version.tar.gz
Patch2: xxhash.diff
+Patch3: glslang14.diff
BuildRequires: cmake >= 3.7.12
%if 0%{?suse_version} >= 1599
BuildRequires: gcc-c++
++++++ glslang14.diff ++++++
From: Jan Engelhardt <[email protected]>
Date: 2023-12-31 01:23:14.975791155 +0100
Unbreak compilation after system was updated to glslang 14.
Patch created by looking at commit db7389064ffd286726009a630b14e2e6114159e2.
---
layers/gpu_validation/gpu_error_message.cpp | 2 ++
1 file changed, 2 insertions(+)
Index:
Vulkan-ValidationLayers-vulkan-sdk-1.3.268.0/layers/gpu_validation/gpu_error_message.cpp
===================================================================
---
Vulkan-ValidationLayers-vulkan-sdk-1.3.268.0.orig/layers/gpu_validation/gpu_error_message.cpp
+++
Vulkan-ValidationLayers-vulkan-sdk-1.3.268.0/layers/gpu_validation/gpu_error_message.cpp
@@ -18,6 +18,7 @@
#include "gpu_validation/gpu_error_message.h"
#include "spirv-tools/instrument.hpp"
#include "state_tracker/shader_module.h"
+#include "gpu_shaders/gpu_shaders_constants.h"
#include <algorithm>
#include <regex>
@@ -25,6 +26,7 @@
// Generate the stage-specific part of the message.
void UtilGenerateStageMessage(const uint32_t *debug_record, std::string &msg) {
using namespace spvtools;
+ using namespace gpuav_glsl;
std::ostringstream strm;
switch (debug_record[kInstCommonOutStageIdx]) {
case spv::ExecutionModelVertex: {