Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package shaderc for openSUSE:Factory checked in at 2022-10-27 13:53:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/shaderc (Old) and /work/SRC/openSUSE:Factory/.shaderc.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "shaderc" Thu Oct 27 13:53:20 2022 rev:18 rq:1030962 version:2022.3 Changes: -------- --- /work/SRC/openSUSE:Factory/shaderc/shaderc.changes 2022-08-24 15:10:44.152479787 +0200 +++ /work/SRC/openSUSE:Factory/.shaderc.new.2275/shaderc.changes 2022-10-27 13:53:38.640405805 +0200 @@ -1,0 +2,6 @@ +Mon Oct 24 20:29:48 UTC 2022 - Jan Engelhardt <[email protected]> + +- Update to release 2022.3 + * Implement default builtin constants needed for GL_EXT_mesh_shader. + +------------------------------------------------------------------- Old: ---- v2022.2.tar.gz New: ---- v2022.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ shaderc.spec ++++++ --- /var/tmp/diff_new_pack.rE85qx/_old 2022-10-27 13:53:39.120408253 +0200 +++ /var/tmp/diff_new_pack.rE85qx/_new 2022-10-27 13:53:39.128408294 +0200 @@ -19,7 +19,7 @@ # Remember to bump in baselibs.conf %define lname libshaderc_shared1 Name: shaderc -Version: 2022.2 +Version: 2022.3 Release: 0 Summary: A collection of tools, libraries and tests for shader compilation License: Apache-2.0 @@ -31,9 +31,9 @@ Patch1: 0001-Use-system-third-party-libs.patch BuildRequires: c++_compiler BuildRequires: cmake >= 2.8.12 -BuildRequires: glslang-devel >= 11.11.0 -BuildRequires: spirv-headers >= 1.6.1~sdk224+git2 -BuildRequires: spirv-tools-devel >= 2022.3 +BuildRequires: glslang-devel >= 11.1.0.g573 +BuildRequires: spirv-headers >= 1.6.1~sdk231 +BuildRequires: spirv-tools-devel >= 2022.4 %description A collection of tools, libraries and tests for shader compilation. ++++++ v2022.2.tar.gz -> v2022.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shaderc-2022.2/CHANGES new/shaderc-2022.3/CHANGES --- old/shaderc-2022.2/CHANGES 2022-08-12 16:30:24.000000000 +0200 +++ new/shaderc-2022.3/CHANGES 2022-10-12 20:23:54.000000000 +0200 @@ -1,5 +1,9 @@ Revision history for Shaderc +v2022.3 2022-10-12 + - #1264: Implement defaults for SPV_EXT_mesh_shader builtins + - Update SPIRV-Tools to v2022.4 + v2022.2 2022-08-11 - Require CMake 3.14 or later - Support 16bit types in HLSL, via glslc option -fhlsl-16bit-types diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shaderc-2022.2/DEPS new/shaderc-2022.3/DEPS --- old/shaderc-2022.2/DEPS 2022-08-12 16:30:24.000000000 +0200 +++ new/shaderc-2022.3/DEPS 2022-10-12 20:23:54.000000000 +0200 @@ -4,12 +4,12 @@ 'google_git': 'https://github.com/google', 'khronos_git': 'https://github.com/KhronosGroup', - 'effcee_revision' : '2ec8f8738118cc483b67c04a759fee53496c5659', - 'glslang_revision': 'f771c1293dce29e1ac3557cf994169136155c81f', - 'googletest_revision': '389cb68b87193358358ae87cc56d257fd0d80189', - 're2_revision': '7107ebc4fbf7205151d8d2a57b2fc6e7853125d4', - 'spirv_headers_revision': '0bcc624926a25a2a273d07877fd25a6ff5ba1cfb', - 'spirv_tools_revision': '3a8a961cffb7699422a05dcbafdd721226b4547d', + 'effcee_revision' : '35912e1b7778ec2ddcff7e7188177761539e59', + 'glslang_revision': '89db4e1caa273a057ea46deba709c6e50001b314', + 'googletest_revision': 'd9bb8412d60b993365abb53f00b6dad9b2c01b62', + 're2_revision': 'd2836d1b1c34c4e330a85a1006201db474bf2c8a', + 'spirv_headers_revision': '85a1ed200d50660786c1a88d9166e871123cce39', + 'spirv_tools_revision': 'eb0a36633d2acf4de82588504f951ad0f2cecacb', } deps = { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shaderc-2022.2/libshaderc_util/src/resources.cc new/shaderc-2022.3/libshaderc_util/src/resources.cc --- old/shaderc-2022.2/libshaderc_util/src/resources.cc 2022-08-12 16:30:24.000000000 +0200 +++ new/shaderc-2022.3/libshaderc_util/src/resources.cc 2022-10-12 20:23:54.000000000 +0200 @@ -125,6 +125,15 @@ /* .maxTaskWorkGroupSizeY_NV = */ 1, /* .maxTaskWorkGroupSizeZ_NV = */ 1, /* .maxMeshViewCountNV = */ 4, + /* .maxMeshOutputVerticesEXT = */ 256, + /* .maxMeshOutputPrimitivesEXT = */ 256, + /* .maxMeshWorkGroupSizeX_EXT = */ 128, + /* .maxMeshWorkGroupSizeY_EXT = */ 128, + /* .maxMeshWorkGroupSizeZ_EXT = */ 128, + /* .maxTaskWorkGroupSizeX_EXT = */ 128, + /* .maxTaskWorkGroupSizeY_EXT = */ 128, + /* .maxTaskWorkGroupSizeZ_EXT = */ 128, + /* .maxMeshViewCountEXT = */ 4, /* .maxDualSourceDrawBuffersEXT = */ 1, // This is the glslang TLimits structure. // It defines whether or not the following features are enabled.
