summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-ir-util.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2025-03-06 14:26:34 -0800
committerGitHub <noreply@github.com>2025-03-06 14:26:34 -0800
commit4485cf3eaf142cfd5f8470e86739acc67d4e12ea (patch)
treec6ce220dfe5f3ab25ea558f2512f3761c9565c69 /source/slang/slang-ir-util.cpp
parent55dd2deaff82bbdb72e125ba4b350030b7e5f427 (diff)
Update SPIRV-Tools and fix new validation errors. (#6511)
* Update SPIRV-Tools and fix new validation errors. * Implement pointers for glsl target. * Reworked packStorage/unpackStorage code gen to operate on pointers rather than values.
Diffstat (limited to 'source/slang/slang-ir-util.cpp')
-rw-r--r--source/slang/slang-ir-util.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/slang/slang-ir-util.cpp b/source/slang/slang-ir-util.cpp
index f75a24ac6..4aef7e7ba 100644
--- a/source/slang/slang-ir-util.cpp
+++ b/source/slang/slang-ir-util.cpp
@@ -616,11 +616,6 @@ void getTypeNameHint(StringBuilder& sb, IRInst* type)
case kIROp_HitObjectType:
sb << "HitObject";
break;
- case kIROp_HLSLConstBufferPointerType:
- sb << "ConstantBufferPointer<";
- getTypeNameHint(sb, as<IRHLSLConstBufferPointerType>(type)->getValueType());
- sb << ">";
- break;
case kIROp_HLSLStructuredBufferType:
sb << "StructuredBuffer<";
getTypeNameHint(sb, as<IRHLSLStructuredBufferTypeBase>(type)->getElementType());