blob: c2de8be5526bf3790c70354636ecf9ac645dd298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "slang-ir.h"
namespace Slang
{
struct CodeGenContext;
struct IRModule;
class DiagnosticSink;
// Lower combined texture sampler types to structs.
void lowerCombinedTextureSamplers(
CodeGenContext* codeGenContext,
IRModule* module,
DiagnosticSink* sink);
} // namespace Slang
|