diff options
Diffstat (limited to 'source/slang/emit.h')
| -rw-r--r-- | source/slang/emit.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/slang/emit.h b/source/slang/emit.h index 98845f9c6..317afcf6b 100644 --- a/source/slang/emit.h +++ b/source/slang/emit.h @@ -8,7 +8,7 @@ namespace Slang { - class EntryPointRequest; + class EntryPoint; class ProgramLayout; class TranslationUnitRequest; @@ -20,13 +20,13 @@ namespace Slang // Emit code for a single entry point, based on // the input translation unit. String emitEntryPoint( - EntryPointRequest* entryPoint, - ProgramLayout* programLayout, + BackEndCompileRequest* compileRequest, + EntryPoint* entryPoint, // The target language to generate code in (e.g., HLSL/GLSL) - CodeGenTarget target, + CodeGenTarget target, // The full target request - TargetRequest* targetRequest); + TargetRequest* targetRequest); } #endif |
