diff options
| author | Yong He <yonghe@outlook.com> | 2025-03-06 14:26:34 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-06 14:26:34 -0800 |
| commit | 4485cf3eaf142cfd5f8470e86739acc67d4e12ea (patch) | |
| tree | c6ce220dfe5f3ab25ea558f2512f3761c9565c69 /source/slang/slang-ir-util.cpp | |
| parent | 55dd2deaff82bbdb72e125ba4b350030b7e5f427 (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.cpp | 5 |
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()); |
