Skip to content

Commit

Permalink
build: Update shader toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
mikes-lunarg authored and spencer-lunarg committed Dec 16, 2024
1 parent c3c127e commit 74f5579
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
26 changes: 13 additions & 13 deletions layers/vulkan/generated/feature_requirements_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4357,21 +4357,21 @@ FeatureAndName AddFeature(APIVersion api_version, vkt::Feature feature, void **i
}
#ifdef VK_ENABLE_BETA_EXTENSIONS

case Feature::constantAlphaColorBlendFactors: {
auto vk_struct = const_cast<VkPhysicalDevicePortabilitySubsetFeaturesKHR *>(
vku::FindStructInPNextChain<VkPhysicalDevicePortabilitySubsetFeaturesKHR>(*inout_pnext_chain));
if (!vk_struct) {
vk_struct = new VkPhysicalDevicePortabilitySubsetFeaturesKHR;
*vk_struct = vku::InitStructHelper();
if (*inout_pnext_chain) {
vvl::PnextChainAdd(*inout_pnext_chain, vk_struct);
} else {
*inout_pnext_chain = vk_struct;
case Feature::constantAlphaColorBlendFactors : {
auto vk_struct = const_cast<VkPhysicalDevicePortabilitySubsetFeaturesKHR *>(
vku::FindStructInPNextChain<VkPhysicalDevicePortabilitySubsetFeaturesKHR>(*inout_pnext_chain));
if (!vk_struct) {
vk_struct = new VkPhysicalDevicePortabilitySubsetFeaturesKHR;
*vk_struct = vku::InitStructHelper();
if (*inout_pnext_chain) {
vvl::PnextChainAdd(*inout_pnext_chain, vk_struct);
} else {
*inout_pnext_chain = vk_struct;
}
}
return {&vk_struct->constantAlphaColorBlendFactors,
"VkPhysicalDevicePortabilitySubsetFeaturesKHR::constantAlphaColorBlendFactors"};
}
return {&vk_struct->constantAlphaColorBlendFactors,
"VkPhysicalDevicePortabilitySubsetFeaturesKHR::constantAlphaColorBlendFactors"};
}
#endif // VK_ENABLE_BETA_EXTENSIONS
#ifdef VK_ENABLE_BETA_EXTENSIONS

Expand Down
2 changes: 1 addition & 1 deletion layers/vulkan/generated/spirv_tools_commit_id.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@

#pragma once

#define SPIRV_TOOLS_COMMIT_ID "02433568af277324e6d7fe4582b663f14165c563"
#define SPIRV_TOOLS_COMMIT_ID "4d2f0b40bfe290dea6c6904dafdf7fd8328ba346"
6 changes: 3 additions & 3 deletions scripts/known_good.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"sub_dir": "SPIRV-Headers",
"build_dir": "SPIRV-Headers/build",
"install_dir": "SPIRV-Headers/build/install",
"commit": "36d5e2ddaa54c70d2f29081510c66f4fc98e5e53"
"commit": "3f17b2af6784bfa2c5aa5dbb8e0e74a607dd8b3b"
},
{
"name": "SPIRV-Tools",
Expand All @@ -43,7 +43,7 @@
"-DSPIRV_SKIP_TESTS=ON",
"-DSPIRV_SKIP_EXECUTABLES=OFF"
],
"commit": "02433568af277324e6d7fe4582b663f14165c563"
"commit": "4d2f0b40bfe290dea6c6904dafdf7fd8328ba346"
},
{
"name": "robin-hood-hashing",
Expand Down Expand Up @@ -95,7 +95,7 @@
"sub_dir": "glslang",
"build_dir": "glslang/build",
"install_dir": "glslang/build/install",
"commit": "d0e67c58134377f065a509845ca6b7d463f5b487",
"commit": "1062752a891c95b2bfeed9e356562d88f9df84ac",
"cmake_options": [
"-DENABLE_OPT=OFF"
],
Expand Down

0 comments on commit 74f5579

Please sign in to comment.