https://github.com/shader-slang/slang
Raw File
Tip revision: 6dca7e39292e6c5672440f6f1dbfb204a79b90d2 authored by Yong He on 03 February 2024, 20:29:12 UTC
Fix spirv emit that leads to pathological downstream time. (#3546)
Tip revision: 6dca7e3
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