clc: bump SPIR-V target to 1.6

We depend on a new enough SPIRV-Tools, so we can bump this.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33327>
This commit is contained in:
Karol Herbst 2025-01-31 01:43:19 +01:00 committed by Marge Bot
parent 7f493b45ae
commit 48f93e7313

View file

@ -83,7 +83,7 @@
namespace fs = std::filesystem;
/* Use the highest version of SPIRV supported by SPIRV-Tools. */
constexpr spv_target_env spirv_target = SPV_ENV_UNIVERSAL_1_5;
constexpr spv_target_env spirv_target = SPV_ENV_UNIVERSAL_1_6;
constexpr SPIRV::VersionNumber invalid_spirv_trans_version = static_cast<SPIRV::VersionNumber>(0);