summaryrefslogtreecommitdiff
path: root/tools/glslang/glslang.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/glslang/glslang.h')
-rw-r--r--tools/glslang/glslang.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/glslang/glslang.h b/tools/glslang/glslang.h
deleted file mode 100644
index f02d43882..000000000
--- a/tools/glslang/glslang.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// glslang.h
-#ifndef GLSLANG_H_INCLUDED
-#define GLSLANG_H_INCLUDED
-
-typedef void (*glslang_OutputFunc)(void const* data, size_t size, void* userData);
-
-enum
-{
- GLSLANG_ACTION_COMPILE_GLSL_TO_SPIRV,
- GLSLANG_ACTION_DISSASSEMBLE_SPIRV,
-};
-
-struct glslang_CompileRequest
-{
- char const* sourcePath;
-
- void const* inputBegin;
- void const* inputEnd;
-
- glslang_OutputFunc diagnosticFunc;
- void* diagnosticUserData;
-
- glslang_OutputFunc outputFunc;
- void* outputUserData;
-
- int slangStage;
-
- unsigned action;
-};
-
-typedef int (*glslang_CompileFunc)(glslang_CompileRequest* request);
-
-#endif