summaryrefslogtreecommitdiff
path: root/slang.h
diff options
context:
space:
mode:
Diffstat (limited to 'slang.h')
-rw-r--r--slang.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/slang.h b/slang.h
index 1d4c517b5..0de215a33 100644
--- a/slang.h
+++ b/slang.h
@@ -551,13 +551,14 @@ extern "C"
SLANG_DXIL,
SLANG_DXIL_ASM,
SLANG_C_SOURCE, ///< The C language
- SLANG_CPP_SOURCE, ///< The C++ language
- SLANG_EXECUTABLE, ///< Executable (for hosting CPU/OS)
- SLANG_SHARED_LIBRARY, ///< A shared library/Dll (for hosting CPU/OS)
- SLANG_HOST_CALLABLE, ///< A CPU target that makes the compiled code available to be run immediately
+ SLANG_CPP_SOURCE, ///< C++ code for shader kernels.
+ SLANG_HOST_EXECUTABLE, ///< Standalone binary executable (for hosting CPU/OS)
+ SLANG_SHADER_SHARED_LIBRARY, ///< A shared library/Dll for shader kernels (for hosting CPU/OS)
+ SLANG_SHADER_HOST_CALLABLE, ///< A CPU target that makes the compiled shader code available to be run immediately
SLANG_CUDA_SOURCE, ///< Cuda source
SLANG_PTX, ///< PTX
SLANG_OBJECT_CODE, ///< Object code that can be used for later linking
+ SLANG_HOST_CPP_SOURCE, ///< C++ code for host library or executable.
SLANG_TARGET_COUNT_OF,
};