blob: 521f3b76a05b198ade8ca20d503d70565a381cbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// slang-ir-explicit-global-context.h
#pragma once
#include "slang-compiler.h"
namespace Slang
{
struct IRModule;
/// Collect global-scope variables/paramters to form an explicit context that gets threaded through
void introduceExplicitGlobalContext(
IRModule* module,
CodeGenTarget target);
}
|