https://github.com/shader-slang/slang
Raw File
Tip revision: b68516e2c2e39af79dda2ec7871fe4d821ef67c4 authored by Yong He on 03 April 2023, 22:54:16 UTC
Emit simpler vector element access code. (#2770)
Tip revision: b68516e
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