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-specialize-matrix-layout.h
#ifndef SLANG_IR_SPECIALIZE_MATRIX_LAYOUT_H
#define SLANG_IR_SPECIALIZE_MATRIX_LAYOUT_H

namespace Slang
{
    struct IRModule;
    class TargetProgram;

    // Repalce all matrix types whose layout is not specified with the default layout
    // of the target request.
    //
    void specializeMatrixLayout(TargetProgram* target, IRModule* module);

}

#endif
back to top