https://github.com/shader-slang/slang
Raw File
Tip revision: 01efe34dbef2be952298075abd8d36cc67ac9f4e authored by Yong He on 04 March 2024, 21:14:21 UTC
Add `IGlobalSession::getSessionDescDigest`. (#3669)
Tip revision: 01efe34
slang-ir-lower-com-methods.h
// slang-ir-lower-com-methods.h
#pragma once

namespace Slang
{

struct IRModule;
class DiagnosticSink;

/// Lower the signature of COM interface methods out of types that
/// cannot appear in a COM interface. For example, String, List, ComPtr, Result all need to be translated.
void lowerComMethods(IRModule* module, DiagnosticSink* sink);

}
back to top