From 4485cf3eaf142cfd5f8470e86739acc67d4e12ea Mon Sep 17 00:00:00 2001 From: Yong He Date: Thu, 6 Mar 2025 14:26:34 -0800 Subject: 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. --- source/slang/slang-ir-util.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source/slang/slang-ir-util.cpp') 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(type)->getValueType()); - sb << ">"; - break; case kIROp_HLSLStructuredBufferType: sb << "StructuredBuffer<"; getTypeNameHint(sb, as(type)->getElementType()); -- cgit v1.2.3