blob: a876634e6ed6075bf58de0d24602bf7b704bc11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// slang-ir-lower-generic-call.h
#pragma once
namespace Slang
{
struct SharedGenericsLoweringContext;
/// Lower generic and interface-based code to ordinary types and functions using
/// dynamic dispatch mechanisms.
void lowerGenericCalls(SharedGenericsLoweringContext* sharedContext);
} // namespace Slang
|