https://github.com/shader-slang/slang
Raw File
Tip revision: e24c5a6cb9c3347477b83abe084a09ae8f9fde0a authored by Tim Foley on 08 January 2021, 00:01:48 UTC
Fill in some missing bits of capability API (#1652)
Tip revision: e24c5a6
slang-ir-strip-witness-tables.h
// slang-ir-strip-witness-tables.cpp
#pragma once

namespace Slang
{
struct IRModule;

    /// Strip the contents of all witness table instructions from the given IR `module`
void stripWitnessTables(IRModule* module);
}
back to top