summaryrefslogtreecommitdiff
path: root/source/slang/slang-ast-type.h
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-ast-type.h
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-ast-type.h')
-rw-r--r--source/slang/slang-ast-type.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/slang/slang-ast-type.h b/source/slang/slang-ast-type.h
index f60c0485e..7393092f9 100644
--- a/source/slang/slang-ast-type.h
+++ b/source/slang/slang-ast-type.h
@@ -632,13 +632,6 @@ class PtrType : public PtrTypeBase
void _toTextOverride(StringBuilder& out);
};
-// A GPU pointer type into global memory.
-
-class ConstBufferPointerType : public PtrTypeBase
-{
- SLANG_AST_CLASS(ConstBufferPointerType)
-};
-
/// A pointer-like type used to represent a parameter "direction"
class ParamDirectionType : public PtrTypeBase
{