2024-04-11 12:38:42 +02:00
|
|
|
#include "slang-compile.h"
|
|
|
|
|
#include <slang.h>
|
|
|
|
|
#include "Containers/Array.h"
|
|
|
|
|
#include <fmt/core.h>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
#define CHECK_RESULT(x) {SlangResult r = x; if(r != 0) {throw std::runtime_error(fmt::format("Error: {0}", r));}}
|
|
|
|
|
#define CHECK_DIAGNOSTICS() {if(diagnostics) {std::cout << (const char*)diagnostics->getBufferPointer() << std::endl; assert(false);}}
|
|
|
|
|
|
2024-04-19 18:23:36 +02:00
|
|
|
Slang::ComPtr<slang::IBlob> Seele::generateShader(const ShaderCreateInfo& createInfo, SlangCompileTarget target, Map<std::string, uint32>& paramMapping)
|
2024-04-11 12:38:42 +02:00
|
|
|
{
|
|
|
|
|
thread_local Slang::ComPtr<slang::IGlobalSession> globalSession;
|
|
|
|
|
if(!globalSession)
|
|
|
|
|
{
|
|
|
|
|
slang::createGlobalSession(globalSession.writeRef());
|
|
|
|
|
}
|
|
|
|
|
slang::SessionDesc sessionDesc;
|
|
|
|
|
sessionDesc.flags = 0;
|
2024-04-24 23:25:34 +02:00
|
|
|
StaticArray<slang::CompilerOptionEntry, 2> option;
|
2024-04-23 19:11:06 +02:00
|
|
|
option[0].name = slang::CompilerOptionName::DumpIntermediates;
|
|
|
|
|
option[0].value = slang::CompilerOptionValue();
|
|
|
|
|
option[0].value.kind = slang::CompilerOptionValueKind::Int;
|
|
|
|
|
option[0].value.intValue0 = 1;
|
2024-04-26 11:42:28 +02:00
|
|
|
option[1].name = slang::CompilerOptionName::EmitSpirvViaGLSL;
|
2024-04-23 19:11:06 +02:00
|
|
|
option[1].value = slang::CompilerOptionValue();
|
|
|
|
|
option[1].value.kind = slang::CompilerOptionValueKind::Int;
|
|
|
|
|
option[1].value.intValue0 = 1;
|
2024-04-23 23:21:30 +02:00
|
|
|
sessionDesc.compilerOptionEntries = option.data();
|
|
|
|
|
sessionDesc.compilerOptionEntryCount = option.size();
|
2024-04-11 12:38:42 +02:00
|
|
|
sessionDesc.defaultMatrixLayoutMode = SLANG_MATRIX_LAYOUT_COLUMN_MAJOR;
|
|
|
|
|
Array<slang::PreprocessorMacroDesc> macros;
|
|
|
|
|
for(const auto& [key, val] : createInfo.defines)
|
|
|
|
|
{
|
|
|
|
|
macros.add(slang::PreprocessorMacroDesc{
|
|
|
|
|
.name = key,
|
|
|
|
|
.value = val,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
sessionDesc.preprocessorMacroCount = macros.size();
|
|
|
|
|
sessionDesc.preprocessorMacros = macros.data();
|
2024-04-20 21:35:43 +02:00
|
|
|
slang::TargetDesc targetDesc;
|
|
|
|
|
targetDesc.profile = globalSession->findProfile("sm_6_6");
|
|
|
|
|
targetDesc.format = target;
|
2024-04-11 12:38:42 +02:00
|
|
|
sessionDesc.targetCount = 1;
|
2024-04-20 21:35:43 +02:00
|
|
|
sessionDesc.targets = &targetDesc;
|
2024-04-11 12:38:42 +02:00
|
|
|
StaticArray<const char*, 3> searchPaths = {"shaders/", "shaders/lib/", "shaders/generated/"};
|
|
|
|
|
sessionDesc.searchPaths = searchPaths.data();
|
|
|
|
|
sessionDesc.searchPathCount = searchPaths.size();
|
|
|
|
|
|
|
|
|
|
Slang::ComPtr<slang::ISession> session;
|
|
|
|
|
CHECK_RESULT(globalSession->createSession(sessionDesc, session.writeRef()));
|
|
|
|
|
Slang::ComPtr<slang::IBlob> diagnostics;
|
|
|
|
|
Array<slang::IComponentType*> modules;
|
|
|
|
|
Slang::ComPtr<slang::IEntryPoint> entrypoint;
|
|
|
|
|
for (const auto& moduleName : createInfo.additionalModules)
|
|
|
|
|
{
|
|
|
|
|
modules.add(session->loadModule(moduleName.c_str(), diagnostics.writeRef()));
|
|
|
|
|
CHECK_DIAGNOSTICS();
|
|
|
|
|
}
|
2024-04-26 19:32:38 +02:00
|
|
|
slang::IModule* mainModule = session->loadModule(createInfo.mainModule.c_str(), diagnostics.writeRef());
|
|
|
|
|
modules.add(mainModule);
|
2024-04-11 12:38:42 +02:00
|
|
|
CHECK_DIAGNOSTICS();
|
|
|
|
|
|
|
|
|
|
mainModule->findEntryPointByName(createInfo.entryPoint.c_str(), entrypoint.writeRef());
|
|
|
|
|
modules.add(entrypoint);
|
|
|
|
|
|
|
|
|
|
Slang::ComPtr<slang::IComponentType> moduleComposition;
|
|
|
|
|
session->createCompositeComponentType(modules.data(), modules.size(), moduleComposition.writeRef(), diagnostics.writeRef());
|
|
|
|
|
|
|
|
|
|
CHECK_DIAGNOSTICS();
|
|
|
|
|
|
|
|
|
|
Slang::ComPtr<slang::IComponentType> linkedProgram;
|
|
|
|
|
moduleComposition->link(linkedProgram.writeRef(), diagnostics.writeRef());
|
|
|
|
|
|
|
|
|
|
CHECK_DIAGNOSTICS();
|
|
|
|
|
|
|
|
|
|
slang::ProgramLayout* reflection = linkedProgram->getLayout(0, diagnostics.writeRef());
|
|
|
|
|
|
|
|
|
|
CHECK_DIAGNOSTICS();
|
|
|
|
|
|
|
|
|
|
Array<slang::SpecializationArg> specialization;
|
|
|
|
|
for(const auto& [key, value] : createInfo.typeParameter)
|
|
|
|
|
{
|
|
|
|
|
specialization.add(slang::SpecializationArg::fromType(reflection->findTypeByName(value)));
|
|
|
|
|
}
|
|
|
|
|
Slang::ComPtr<slang::IComponentType> specializedComponent;
|
|
|
|
|
linkedProgram->specialize(specialization.data(), specialization.size(), specializedComponent.writeRef(), diagnostics.writeRef());
|
|
|
|
|
CHECK_DIAGNOSTICS();
|
2024-04-21 10:37:15 +02:00
|
|
|
|
2024-04-11 12:38:42 +02:00
|
|
|
Slang::ComPtr<slang::IBlob> kernelBlob;
|
|
|
|
|
specializedComponent->getEntryPointCode(
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
kernelBlob.writeRef(),
|
|
|
|
|
diagnostics.writeRef()
|
|
|
|
|
);
|
|
|
|
|
CHECK_DIAGNOSTICS();
|
2024-04-19 18:23:36 +02:00
|
|
|
slang::ProgramLayout* signature = specializedComponent->getLayout(0, diagnostics.writeRef());
|
|
|
|
|
CHECK_DIAGNOSTICS();
|
|
|
|
|
for(size_t i = 0; i < signature->getParameterCount(); ++i)
|
|
|
|
|
{
|
2024-04-21 10:37:15 +02:00
|
|
|
auto param = signature->getParameterByIndex(i);
|
2024-04-24 23:25:34 +02:00
|
|
|
// workaround
|
|
|
|
|
if (std::strcmp(param->getName(), "pVertexData") == 0)
|
|
|
|
|
{
|
|
|
|
|
paramMapping[param->getName()] = 1;
|
|
|
|
|
}
|
|
|
|
|
else if (std::strcmp(param->getName(), "pMaterial") == 0)
|
|
|
|
|
{
|
|
|
|
|
paramMapping[param->getName()] = 4;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
paramMapping[param->getName()] = param->getBindingIndex();
|
|
|
|
|
}
|
2024-04-19 18:23:36 +02:00
|
|
|
}
|
2024-04-11 12:38:42 +02:00
|
|
|
return kernelBlob;
|
2024-04-19 18:23:36 +02:00
|
|
|
}
|