This commit is contained in:
2024-12-21 20:33:25 -06:00
parent b5958189cf
commit c87f13b063
5 changed files with 20 additions and 31 deletions

View File

@ -8,8 +8,6 @@
#include "asset/AssetManager.hpp"
#include "game/Game.hpp"
#include <fstream>
using namespace Dawn;
const std::string ShaderLoader::ASSET_TYPE = "shader";
@ -44,9 +42,9 @@ void ShaderLoader::updateSync() {
// Get list of entry points and create components
int32_t definedEntryPointCount = module->getDefinedEntryPointCount();
IComponentType** components = new IComponentType*[definedEntryPointCount + 1];
int32_t j = 0;
int32_t componentCount = 0;
components[j++] = module;
components[componentCount++] = module;
for(auto i = 0; i < definedEntryPointCount; i++) {
Slang::ComPtr<IEntryPoint> ep;
@ -60,15 +58,20 @@ void ShaderLoader::updateSync() {
auto name = ep->getFunctionReflection()->getName();
std::cout << "Found entry point: " << name << std::endl;
entryPoints.push_back(std::string(name));
components[j++] = ep;
components[componentCount++] = ep;
}
// Create the composite component type
sm->session->createCompositeComponentType(
components,
sizeof(components) / sizeof(components[0]),
program.writeRef()
componentCount,
program.writeRef(),
diagnostics.writeRef()
);
if(diagnostics) {
assertUnreachable("%s\n", (const char*) diagnostics->getBufferPointer());
return;
}
// Link the program.
auto result = program->link(linkedProgram.writeRef(), diagnostics.writeRef());
@ -77,19 +80,7 @@ void ShaderLoader::updateSync() {
return;
}
// result
Slang::ComPtr<IBlob> blob;
auto result2 = linkedProgram->getEntryPointCode(
0,
0,
blob.writeRef(),
diagnostics.writeRef()
);
if(diagnostics) {
assertUnreachable("%s\n", (const char*) diagnostics->getBufferPointer());
}
delete [] components;
this->state = ShaderLoaderState::LOADED;
this->loaded = true;
}

View File

@ -8,7 +8,11 @@
using namespace Dawn;
ShaderManager::ShaderManager() {
ShaderManager::ShaderManager() :
targetDescription(),
sessionDescription()
{
}
void ShaderManager::init(const std::shared_ptr<Game> &game) {

View File

@ -63,7 +63,7 @@ void IGame::init() {
settingsManager->load();
shaderManager = std::make_shared<ShaderManager>();
shaderManager->init(shared_from_this());
shaderManager->init(selfAsGame);
this->initManagers();

View File

@ -78,7 +78,6 @@ void SimpleTexturedShader::getStages(
return output;
}
)";
Slang::ComPtr<IGlobalSession> globalSession;
createGlobalSession(globalSession.writeRef());
@ -159,9 +158,6 @@ void SimpleTexturedShader::getStages(
}
std::string vertexString = (const char*)vertexBlob->getBufferPointer();
std::ofstream out("/home/yourwishes/htdocs/Dawn/vertex.glsl");
out << vertexString;
out.close();
entryPointIndex = 1;
Slang::ComPtr<IBlob> fragmentBlob;
@ -177,9 +173,6 @@ void SimpleTexturedShader::getStages(
}
std::string fragmentString = (const char*)fragmentBlob->getBufferPointer();
out.open("/home/yourwishes/htdocs/Dawn/fragment.glsl");
out << fragmentString;
out.close();
vertex = std::make_shared<ShaderStage>(
ShaderStageType::VERTEX, vertexString

View File

@ -32,7 +32,8 @@ void Game::initManagers() {
auto sl = assetManager->get<ShaderLoader>("shaders/hello-world.slang");
sl->loadImmediately();
auto code = sl->getEntryPointCode("vertexMain");
auto code1 = sl->getEntryPointCode("vertexMain");
auto code2 = sl->getEntryPointCode("fragmentMain");
}
Game::~Game() {