https://github.com/shader-slang/slang
Raw File
Tip revision: 5902acdabc4445a65741a7a6a3a95f223e301059 authored by Yong He on 23 January 2024, 07:19:40 UTC
[LSP] Fetch configs directly from didConfigurationChanged message. (#3478)
Tip revision: 5902acd
slang-ir-legalize-mesh-outputs.cpp
#include "slang-ir-legalize-mesh-outputs.h"
#include "slang-ir.h"
#include "slang-ir-insts.h"
#include "slang-ir-clone.h"

namespace Slang
{

void legalizeMeshOutputTypes(IRModule* module)
{
    IRBuilder builder(module);

    for (auto inst : module->getGlobalInsts())
    {
        if (auto meshOutput = as<IRMeshOutputType>(inst))
        {
            auto elemType = meshOutput->getElementType();
            auto maxCount = meshOutput->getMaxElementCount();
            auto arrayType = builder.getArrayType(elemType, maxCount);
            IROp decorationOp
                = as<IRVerticesType>(meshOutput)   ? kIROp_VerticesDecoration
                : as<IRIndicesType>(meshOutput)    ? kIROp_IndicesDecoration
                : as<IRPrimitivesType>(meshOutput) ? kIROp_PrimitivesDecoration
                : (SLANG_UNREACHABLE("Missing case for IRMeshOutputType"), IROp(0));
            // Ensure that all params are marked up as vertices/indices/primitives
            traverseUsers<IRParam>(meshOutput, [&](IRParam* i)
                {
                    builder.addMeshOutputDecoration(decorationOp, i, maxCount);
                });
            meshOutput->replaceUsesWith(arrayType);
        }
    }
}

}
back to top