summaryrefslogtreecommitdiff
path: root/source/slang/lower.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/lower.h')
-rw-r--r--source/slang/lower.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/slang/lower.h b/source/slang/lower.h
index c690ea025..688c1df8f 100644
--- a/source/slang/lower.h
+++ b/source/slang/lower.h
@@ -17,6 +17,8 @@ namespace Slang
class ProgramLayout;
class TranslationUnitRequest;
+ struct ExtensionUsageTracker;
+
struct LoweredEntryPoint
{
// The actual lowered entry point
@@ -31,8 +33,9 @@ namespace Slang
// Emit code for a single entry point, based on
// the input translation unit.
LoweredEntryPoint lowerEntryPoint(
- EntryPointRequest* entryPoint,
- ProgramLayout* programLayout,
- CodeGenTarget target);
+ EntryPointRequest* entryPoint,
+ ProgramLayout* programLayout,
+ CodeGenTarget target,
+ ExtensionUsageTracker* extensionUsageTracker);
}
#endif