shader
This commit is contained in:
@ -8,8 +8,6 @@
|
|||||||
#include "asset/AssetManager.hpp"
|
#include "asset/AssetManager.hpp"
|
||||||
#include "game/Game.hpp"
|
#include "game/Game.hpp"
|
||||||
|
|
||||||
#include <fstream>
|
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
const std::string ShaderLoader::ASSET_TYPE = "shader";
|
const std::string ShaderLoader::ASSET_TYPE = "shader";
|
||||||
@ -44,9 +42,9 @@ void ShaderLoader::updateSync() {
|
|||||||
// Get list of entry points and create components
|
// Get list of entry points and create components
|
||||||
int32_t definedEntryPointCount = module->getDefinedEntryPointCount();
|
int32_t definedEntryPointCount = module->getDefinedEntryPointCount();
|
||||||
IComponentType** components = new IComponentType*[definedEntryPointCount + 1];
|
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++) {
|
for(auto i = 0; i < definedEntryPointCount; i++) {
|
||||||
Slang::ComPtr<IEntryPoint> ep;
|
Slang::ComPtr<IEntryPoint> ep;
|
||||||
@ -60,15 +58,20 @@ void ShaderLoader::updateSync() {
|
|||||||
auto name = ep->getFunctionReflection()->getName();
|
auto name = ep->getFunctionReflection()->getName();
|
||||||
std::cout << "Found entry point: " << name << std::endl;
|
std::cout << "Found entry point: " << name << std::endl;
|
||||||
entryPoints.push_back(std::string(name));
|
entryPoints.push_back(std::string(name));
|
||||||
components[j++] = ep;
|
components[componentCount++] = ep;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the composite component type
|
// Create the composite component type
|
||||||
sm->session->createCompositeComponentType(
|
sm->session->createCompositeComponentType(
|
||||||
components,
|
components,
|
||||||
sizeof(components) / sizeof(components[0]),
|
componentCount,
|
||||||
program.writeRef()
|
program.writeRef(),
|
||||||
|
diagnostics.writeRef()
|
||||||
);
|
);
|
||||||
|
if(diagnostics) {
|
||||||
|
assertUnreachable("%s\n", (const char*) diagnostics->getBufferPointer());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Link the program.
|
// Link the program.
|
||||||
auto result = program->link(linkedProgram.writeRef(), diagnostics.writeRef());
|
auto result = program->link(linkedProgram.writeRef(), diagnostics.writeRef());
|
||||||
@ -77,19 +80,7 @@ void ShaderLoader::updateSync() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// result
|
delete [] components;
|
||||||
Slang::ComPtr<IBlob> blob;
|
|
||||||
auto result2 = linkedProgram->getEntryPointCode(
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
blob.writeRef(),
|
|
||||||
diagnostics.writeRef()
|
|
||||||
);
|
|
||||||
|
|
||||||
if(diagnostics) {
|
|
||||||
assertUnreachable("%s\n", (const char*) diagnostics->getBufferPointer());
|
|
||||||
}
|
|
||||||
|
|
||||||
this->state = ShaderLoaderState::LOADED;
|
this->state = ShaderLoaderState::LOADED;
|
||||||
this->loaded = true;
|
this->loaded = true;
|
||||||
}
|
}
|
||||||
|
@ -8,12 +8,16 @@
|
|||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
ShaderManager::ShaderManager() {
|
|
||||||
|
ShaderManager::ShaderManager() :
|
||||||
|
targetDescription(),
|
||||||
|
sessionDescription()
|
||||||
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void ShaderManager::init(const std::shared_ptr<Game> &game) {
|
void ShaderManager::init(const std::shared_ptr<Game> &game) {
|
||||||
assertNotNull(game, "Game instance must not be null.");
|
assertNotNull(game, "Game instance must not be null.");
|
||||||
|
|
||||||
this->game = game;
|
this->game = game;
|
||||||
|
|
||||||
// Create the file system
|
// Create the file system
|
||||||
|
@ -63,7 +63,7 @@ void IGame::init() {
|
|||||||
settingsManager->load();
|
settingsManager->load();
|
||||||
|
|
||||||
shaderManager = std::make_shared<ShaderManager>();
|
shaderManager = std::make_shared<ShaderManager>();
|
||||||
shaderManager->init(shared_from_this());
|
shaderManager->init(selfAsGame);
|
||||||
|
|
||||||
this->initManagers();
|
this->initManagers();
|
||||||
|
|
||||||
|
@ -78,7 +78,6 @@ void SimpleTexturedShader::getStages(
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
|
|
||||||
Slang::ComPtr<IGlobalSession> globalSession;
|
Slang::ComPtr<IGlobalSession> globalSession;
|
||||||
createGlobalSession(globalSession.writeRef());
|
createGlobalSession(globalSession.writeRef());
|
||||||
|
|
||||||
@ -159,9 +158,6 @@ void SimpleTexturedShader::getStages(
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string vertexString = (const char*)vertexBlob->getBufferPointer();
|
std::string vertexString = (const char*)vertexBlob->getBufferPointer();
|
||||||
std::ofstream out("/home/yourwishes/htdocs/Dawn/vertex.glsl");
|
|
||||||
out << vertexString;
|
|
||||||
out.close();
|
|
||||||
|
|
||||||
entryPointIndex = 1;
|
entryPointIndex = 1;
|
||||||
Slang::ComPtr<IBlob> fragmentBlob;
|
Slang::ComPtr<IBlob> fragmentBlob;
|
||||||
@ -177,9 +173,6 @@ void SimpleTexturedShader::getStages(
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string fragmentString = (const char*)fragmentBlob->getBufferPointer();
|
std::string fragmentString = (const char*)fragmentBlob->getBufferPointer();
|
||||||
out.open("/home/yourwishes/htdocs/Dawn/fragment.glsl");
|
|
||||||
out << fragmentString;
|
|
||||||
out.close();
|
|
||||||
|
|
||||||
vertex = std::make_shared<ShaderStage>(
|
vertex = std::make_shared<ShaderStage>(
|
||||||
ShaderStageType::VERTEX, vertexString
|
ShaderStageType::VERTEX, vertexString
|
||||||
|
@ -32,7 +32,8 @@ void Game::initManagers() {
|
|||||||
|
|
||||||
auto sl = assetManager->get<ShaderLoader>("shaders/hello-world.slang");
|
auto sl = assetManager->get<ShaderLoader>("shaders/hello-world.slang");
|
||||||
sl->loadImmediately();
|
sl->loadImmediately();
|
||||||
auto code = sl->getEntryPointCode("vertexMain");
|
auto code1 = sl->getEntryPointCode("vertexMain");
|
||||||
|
auto code2 = sl->getEntryPointCode("fragmentMain");
|
||||||
}
|
}
|
||||||
|
|
||||||
Game::~Game() {
|
Game::~Game() {
|
||||||
|
Reference in New Issue
Block a user