summaryrefslogtreecommitdiff
path: root/source/slang/reflection.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/reflection.h')
-rw-r--r--source/slang/reflection.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/source/slang/reflection.h b/source/slang/reflection.h
deleted file mode 100644
index 09f02d8dd..000000000
--- a/source/slang/reflection.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef SLANG_REFLECTION_H
-#define SLANG_REFLECTION_H
-
-#include "../core/basic.h"
-#include "syntax.h"
-
-#include "../../slang.h"
-
-namespace Slang {
-
-class ProgramLayout;
-class TypeLayout;
-
-//
-
-SlangTypeKind getReflectionTypeKind(Type* type);
-
-SlangTypeKind getReflectionParameterCategory(TypeLayout* typeLayout);
-
-UInt getReflectionFieldCount(Type* type);
-UInt getReflectionFieldByIndex(Type* type, UInt index);
-UInt getReflectionFieldByIndex(TypeLayout* typeLayout, UInt index);
-
-}
-
-#endif // SLANG_REFLECTION_H