https://github.com/shader-slang/slang
Raw File
Tip revision: 883d9f7cccf1080739213282602c0dbae5fa7fe6 authored by lucy96chen on 29 October 2022, 19:08:41 UTC
Shader cache bugfixes and test additions (#2467)
Tip revision: 883d9f7
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