Shader compiler interface. Custom shader compilers need to derive from this class and implement the pure virtual interface functions. Instances are created via reflection, so each implementation must be properly reflected.
More...
#include <ShaderCompiler.h>
|
static const xiiRTTI * | GetStaticRTTI () |
|
Shader compiler interface. Custom shader compilers need to derive from this class and implement the pure virtual interface functions. Instances are created via reflection, so each implementation must be properly reflected.
◆ Compile()
Compiles the shader comprised of multiple stages defined in inout_data.
- Parameters
-
inout_data | The state of the shader compiler. m_Resources and m_ByteCode should be written to on successful return code. |
pLog | Logging interface to be used when outputting any errors. |
- Returns
- Returns whether the shader was compiled successfully. On failure, errors should be written to pLog.
Implemented in xiiShaderCompilerSPIRV.
◆ GetSupportedPlatforms()
Returns the platforms that this shader compiler supports.
- Parameters
-
out_platforms | Filled with the platforms this compiler supports. |
Implemented in xiiShaderCompilerSPIRV.
◆ ModifyShaderSource()
Allows the shader compiler to modify the shader source before hashing and compiling. This allows it to implement custom features by injecting code before the compile process. Mostly used to define resource bindings that do not cause conflicts across shader stages.
- Parameters
-
inout_data | The state of the shader compiler. Only m_sShaderSource should be modified by the implementation. |
pLog | Logging interface to be used when outputting any errors. |
- Returns
- Returns whether the shader could be modified. On failure, the shader won't be compiled.
Implemented in xiiShaderCompilerSPIRV.
The documentation for this class was generated from the following file:
- /home/runner/work/XII/XII/Source/Engine/GraphicsFoundation/ShaderCompiler/ShaderCompiler.h