summaryrefslogtreecommitdiffstats
path: root/source/slang/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/compiler.h')
-rw-r--r--source/slang/compiler.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/slang/compiler.h b/source/slang/compiler.h
index 1919699a1..ca06e3a65 100644
--- a/source/slang/compiler.h
+++ b/source/slang/compiler.h
@@ -47,7 +47,6 @@ namespace Slang
SPIRVAssembly = SLANG_SPIRV_ASM,
DXBytecode = SLANG_DXBC,
DXBytecodeAssembly = SLANG_DXBC_ASM,
- ReflectionJSON = SLANG_REFLECTION_JSON,
SlangIR = SLANG_IR,
SlangIRAssembly = SLANG_IR_ASM,
};
@@ -187,10 +186,6 @@ namespace Slang
// What target language are we compiling to?
CodeGenTarget Target = CodeGenTarget::Unknown;
- // An "extra" target that might override the first one
- // when it comes to deciding output format, etc.
- CodeGenTarget extraTarget = CodeGenTarget::Unknown;
-
// Directories to search for `#include` files or `import`ed modules
List<SearchDirectory> searchDirectories;