diff --git a/assets/materials/simple-textured.json b/assets/materials/simple-textured.json new file mode 100644 index 00000000..5a9f1def --- /dev/null +++ b/assets/materials/simple-textured.json @@ -0,0 +1,8 @@ +{ + "assets": { + "simpleTexturedShader": { + "type": "shader", + "path": "shaders/simple-textured.shader" + } + } +} \ No newline at end of file diff --git a/assets/scenes/test_rpg_scene.json b/assets/scenes/test_rpg_scene.json index c1813899..d6a751c5 100644 --- a/assets/scenes/test_rpg_scene.json +++ b/assets/scenes/test_rpg_scene.json @@ -13,6 +13,10 @@ "rosatext": { "type": "texture", "path": "rosa.texture" + }, + "simpleTexturedShader": { + "type": "shader", + "path": "shaders/simple-textured.slang" } }, diff --git a/assets/shaders/hello-world.slang b/assets/shaders/simple-textured.slang similarity index 63% rename from assets/shaders/hello-world.slang rename to assets/shaders/simple-textured.slang index 51fe9648..77015329 100644 --- a/assets/shaders/hello-world.slang +++ b/assets/shaders/simple-textured.slang @@ -1,13 +1,9 @@ -struct Uniforms { - float4x4 projection; - float4x4 view; - float4x4 model; - float4 color; - bool hasTexture; - Sampler2D texture; -} - -uniform Uniforms uniforms; +uniform float4x4 projection; +uniform float4x4 view; +uniform float4x4 model; +uniform float4 color; +uniform bool hasTexture; +uniform Sampler2D texture; struct AssembledVertex { float3 position : POSITION; @@ -35,7 +31,7 @@ VertexStageOutput vertexMain( output.sv_position = mul( float4(position, 1.0), - mul(uniforms.model, mul(uniforms.view, uniforms.projection)) + mul(model, mul(view, projection)) ); return output; @@ -46,10 +42,11 @@ Fragment fragmentMain( float2 uv: UV ) : SV_Target { Fragment output; - if (uniforms.hasTexture) { - output.color = uniforms.texture.Sample(uv) * uniforms.color; + + if (hasTexture) { + output.color = texture.Sample(uv) * color; } else { - output.color = uniforms.color; + output.color = color; } return output; diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 2a40e574..cf3b016c 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -43,6 +43,6 @@ add_subdirectory(util) # Assets tool_copy(en en.json) -tool_copy(helloShader shaders/hello-world.slang) +tool_copy(simpleTexturedShader shaders/simple-textured.slang) add_dependencies(${DAWN_TARGET_NAME} dawnassets) \ No newline at end of file diff --git a/src/dawn/asset/loader/scene/LoaderForSceneItems.cpp b/src/dawn/asset/loader/scene/LoaderForSceneItems.cpp index 99ed28a7..b20bd68d 100644 --- a/src/dawn/asset/loader/scene/LoaderForSceneItems.cpp +++ b/src/dawn/asset/loader/scene/LoaderForSceneItems.cpp @@ -6,6 +6,7 @@ #include "LoaderForSceneItems.hpp" #include "asset/loader/TextureLoader.hpp" #include "asset/loader/scene/PrefabLoader.hpp" +#include "asset/loader/ShaderLoader.hpp" using namespace Dawn; @@ -58,6 +59,9 @@ void LoaderForSceneItems::setupDependencies() { prefabLoader->ctx->parent = ctx; loader = prefabLoader; + } else if(type == "shader") { + loader = getAssetManager()->get(path); + } else { assertUnreachable("Unknown asset type: %s", type.c_str()); } diff --git a/src/dawn/component/display/material/SimpleTexturedMaterial.cpp b/src/dawn/component/display/material/SimpleTexturedMaterial.cpp index 6a17ae33..06bcd3fd 100644 --- a/src/dawn/component/display/material/SimpleTexturedMaterial.cpp +++ b/src/dawn/component/display/material/SimpleTexturedMaterial.cpp @@ -11,10 +11,21 @@ using namespace Dawn; void SimpleTexturedMaterial::initShaderPrograms() { - this->shader = getGame()->assetManager->get("shaders/hello-world.slang")->getShader(); + if(this->shader) return; + + auto shaderFile = getGame()->assetManager->get("shaders/simple-textured.slang"); + this->shader = shaderFile->getShader(); + + auto structure = this->shader->getStructure(); + this->data = structure->createData(); + + this->setColor(COLOR_WHITE); + this->setTexture(nullptr); } void SimpleTexturedMaterial::load(std::shared_ptr ctx) { + this->initShaderPrograms(); + if(ctx->data.contains("color")) { this->setColor(JSON::color(ctx->data["color"])); } @@ -28,41 +39,47 @@ void SimpleTexturedMaterial::load(std::shared_ptr ctx) { } struct Color SimpleTexturedMaterial::getColor() { - // return this->data.color; - return COLOR_WHITE; + auto structure = this->shader->getStructure(); + return data->get(structure->getOffset("color")); } std::shared_ptr SimpleTexturedMaterial::getTexture() { - return this->texture; + auto structure = this->shader->getStructure(); + return data->get>(structure->getOffset("texture")); } void SimpleTexturedMaterial::setTexture( const std::shared_ptr texture ) { - this->texture = texture; + auto structure = this->shader->getStructure(); + data->set>(structure->getOffset("texture"), texture); + data->set(structure->getOffset("hasTexture"), texture != nullptr); } void SimpleTexturedMaterial::setColor(const struct Color color) { - // this->data.color = color; + auto structure = this->shader->getStructure(); + data->set(structure->getOffset("color"), color); } std::vector> SimpleTexturedMaterial::getPasses( struct RenderPassContext &ctx ) { - // this->data.model = this->getItem()->getWorldTransform(); - // this->data.projection = ctx.camera->getProjection(); - // this->data.view = ctx.camera->getItem()->getWorldTransform(); - // auto textures = std::unordered_map< - // shadertexturebinding_t, std::shared_ptr - // >(); - - // if(this->texture) { - // this->data.hasTexture = true; - // this->data.texture = 0; - // textures[this->data.texture] = this->texture; - // } else { - // this->data.data.hasTexture = false; - // } + auto structure = this->shader->getStructure(); + + data->set( + structure->getOffset("projection"), + ctx.camera->getProjection() + ); + + data->set( + structure->getOffset("view"), + ctx.camera->getItem()->getWorldTransform() + ); + + data->set( + structure->getOffset("model"), + this->getItem()->getWorldTransform() + ); return { std::make_shared( @@ -71,7 +88,8 @@ std::vector> SimpleTexturedMaterial::getPasses( MeshDrawMode::TRIANGLES,// Move this later. 0,// Move this later. -1,// Move this later. - this->shader + this->shader, + this->data ) }; } diff --git a/src/dawn/component/display/material/SimpleTexturedMaterial.hpp b/src/dawn/component/display/material/SimpleTexturedMaterial.hpp index 1fa9303f..177978e3 100644 --- a/src/dawn/component/display/material/SimpleTexturedMaterial.hpp +++ b/src/dawn/component/display/material/SimpleTexturedMaterial.hpp @@ -9,8 +9,8 @@ namespace Dawn { class SimpleTexturedMaterial : public Material { private: - std::shared_ptr shader; - std::shared_ptr texture; + std::shared_ptr shader = nullptr; + std::shared_ptr data; protected: void initShaderPrograms() override; diff --git a/src/dawn/display/pass/RenderPass.cpp b/src/dawn/display/pass/RenderPass.cpp index 15b07b91..4bb5fbc4 100644 --- a/src/dawn/display/pass/RenderPass.cpp +++ b/src/dawn/display/pass/RenderPass.cpp @@ -14,13 +14,15 @@ RenderPass::RenderPass( const enum MeshDrawMode drawMode, const int32_t indiceStart, const int32_t indiceCount, - const std::shared_ptr shaderProgram + const std::shared_ptr shaderProgram, + const std::shared_ptr shaderData ) : mesh(mesh), drawMode(drawMode), indiceStart(indiceStart), indiceCount(indiceCount), - shaderProgram(shaderProgram) + shaderProgram(shaderProgram), + shaderData(shaderData) { // Need mesh? if(!this->mesh) { @@ -30,6 +32,10 @@ RenderPass::RenderPass( } void RenderPass::draw() { + shaderProgram->bind(); + shaderData->bind(); + shaderData->upload(); + mesh->draw(drawMode, indiceStart, indiceCount); } diff --git a/src/dawn/display/pass/RenderPass.hpp b/src/dawn/display/pass/RenderPass.hpp index 561dfcd9..ebd0d30d 100644 --- a/src/dawn/display/pass/RenderPass.hpp +++ b/src/dawn/display/pass/RenderPass.hpp @@ -7,12 +7,14 @@ #include "display/mesh/Mesh.hpp" #include "scene/SceneComponent.hpp" #include "display/shader/ShaderProgram.hpp" +#include "display/shader/ShaderData.hpp" namespace Dawn { class RenderPass { private: std::shared_ptr mesh; std::shared_ptr shaderProgram; + std::shared_ptr shaderData; const enum MeshDrawMode drawMode; const int32_t indiceStart; const int32_t indiceCount; @@ -27,6 +29,7 @@ namespace Dawn { * @param indiceStart The indice to start drawing from. * @param indiceCount The number of indices to draw. * @param shaderProgram The shader program to use for this render pass. + * @param shaderData The shader data to use for this render pass. */ RenderPass( SceneComponent &self, @@ -36,7 +39,8 @@ namespace Dawn { const int32_t indiceStart, const int32_t indiceCount, - const std::shared_ptr shaderProgram + const std::shared_ptr shaderProgram, + const std::shared_ptr shaderData ); /** diff --git a/src/dawn/display/shader/IShaderData.hpp b/src/dawn/display/shader/IShaderData.hpp index dadd8733..c01d7ec5 100644 --- a/src/dawn/display/shader/IShaderData.hpp +++ b/src/dawn/display/shader/IShaderData.hpp @@ -51,6 +51,16 @@ namespace Dawn { template void set(const size_t offset, const T value); + /** + * Binds the buffer to the shader. + */ + virtual void bind() = 0; + + /** + * Uploads the data to the GPU. + */ + virtual void upload() = 0; + /** * Cleans up the data. */ diff --git a/src/dawn/display/shader/IShaderProgram.cpp b/src/dawn/display/shader/IShaderProgram.cpp index 4e070b77..38c3c2e2 100644 --- a/src/dawn/display/shader/IShaderProgram.cpp +++ b/src/dawn/display/shader/IShaderProgram.cpp @@ -129,6 +129,10 @@ void IShaderProgram::init( ); } +std::shared_ptr IShaderProgram::getStructure() { + return structure; +} + IShaderProgram::~IShaderProgram() { // Release the linked program if(linkedProgram) { diff --git a/src/dawn/display/shader/IShaderProgram.hpp b/src/dawn/display/shader/IShaderProgram.hpp index e7948da4..653ef617 100644 --- a/src/dawn/display/shader/IShaderProgram.hpp +++ b/src/dawn/display/shader/IShaderProgram.hpp @@ -39,6 +39,18 @@ namespace Dawn { ComPtr session ); + /** + * Returns the structure of the shader program. + * + * @return The structure of the shader program. + */ + std::shared_ptr getStructure(); + + /** + * Binds this shader program as the currently active shader program. + */ + virtual void bind() = 0; + /** * Destroy the IShaderProgram2 object */ diff --git a/src/dawn/display/shader/ShaderManager.cpp b/src/dawn/display/shader/ShaderManager.cpp index 04d81f9f..08191e07 100644 --- a/src/dawn/display/shader/ShaderManager.cpp +++ b/src/dawn/display/shader/ShaderManager.cpp @@ -27,6 +27,7 @@ void ShaderManager::init(const std::shared_ptr &game) { createGlobalSession(globalSession.writeRef()); // Set the target description, TODO: interface + std::cout << "Need to fix GLSL hard code" << std::endl; targetDescription.format = SLANG_GLSL; targetDescription.profile = globalSession->findProfile("glsl_330"); diff --git a/src/dawn/display/shader/ShaderStructure.cpp b/src/dawn/display/shader/ShaderStructure.cpp index 07774f15..ad3fbf09 100644 --- a/src/dawn/display/shader/ShaderStructure.cpp +++ b/src/dawn/display/shader/ShaderStructure.cpp @@ -60,7 +60,18 @@ ShaderStructure::ShaderStructure( break; case TypeReflection::Kind::Resource: - this->type = ShaderStructureType::RESOURCE; + switch(typeLayout->getResourceShape()) { + case SlangResourceShape::SLANG_TEXTURE_2D: + this->type = ShaderStructureType::TEXTURE2D; + break; + + default: + assertUnreachable( + "Unknown resource shape: %d", + typeLayout->getResourceShape() + ); + break; + } break; default: { @@ -93,6 +104,18 @@ std::shared_ptr ShaderStructure::getArrayMember( return this->members.at(index); } +size_t ShaderStructure::getOffset() { + return this->start; +} + +size_t ShaderStructure::getOffset(const std::string &name) { + return this->getStructMember(name)->getOffset(); +} + +size_t ShaderStructure::getOffset(size_t index) { + return this->getArrayMember(index)->getOffset(); +} + std::shared_ptr ShaderStructure::createData() { return std::make_shared(shared_from_this()); } \ No newline at end of file diff --git a/src/dawn/display/shader/ShaderStructure.hpp b/src/dawn/display/shader/ShaderStructure.hpp index f1905d55..23f54788 100644 --- a/src/dawn/display/shader/ShaderStructure.hpp +++ b/src/dawn/display/shader/ShaderStructure.hpp @@ -18,6 +18,7 @@ namespace Dawn { STRUCT, ARRAY, VARIABLE, + TEXTURE2D, RESOURCE }; @@ -67,6 +68,29 @@ namespace Dawn { */ std::shared_ptr getArrayMember(size_t index); + /** + * Gets the offset of this structure. + * + * @return The offset of this structure. + */ + size_t getOffset(); + + /** + * Gets the offset of a member of this structure. + * + * @param name Name of the member to get. + * @return The offset of the member. + */ + size_t getOffset(const std::string &name); + + /** + * Gets the offset of a member of this array structure. + * + * @param index Index of the member to get. + * @return The offset of the member. + */ + size_t getOffset(size_t index); + /** * Creates data for a shader that matches this structure. * diff --git a/src/dawn/scene/SceneComponent.cpp b/src/dawn/scene/SceneComponent.cpp index 86e2aa31..48e10d62 100644 --- a/src/dawn/scene/SceneComponent.cpp +++ b/src/dawn/scene/SceneComponent.cpp @@ -10,7 +10,12 @@ using namespace Dawn; -void SceneComponent::init(const std::shared_ptr item) { +void SceneComponent::init() { + assertNotNull( + this->item.lock(), + "SceneItem has unloaded, or was not set before initialization" + ); + assertFlagOff( state, SceneComponentState::INITIALIZED, diff --git a/src/dawn/scene/SceneComponent.hpp b/src/dawn/scene/SceneComponent.hpp index 475d0181..d13d0bd7 100644 --- a/src/dawn/scene/SceneComponent.hpp +++ b/src/dawn/scene/SceneComponent.hpp @@ -10,6 +10,7 @@ namespace Dawn { class Game; class Scene; class SceneItem; + class SceneItemComponents; enum class SceneComponentState : flag_t { INITIAL = FLAG(0), @@ -42,10 +43,8 @@ namespace Dawn { /** * Initializes this scene component. - * - * @param item Scene item that this component belongs to. */ - void init(const std::shared_ptr item); + void init(); /** * Disposes this scene component. @@ -92,5 +91,8 @@ namespace Dawn { * Disposes this scene component. */ virtual ~SceneComponent(); + + friend class SceneItem; + friend class SceneItemComponents; }; } \ No newline at end of file diff --git a/src/dawn/scene/SceneItem.cpp b/src/dawn/scene/SceneItem.cpp index de211d14..f095053e 100644 --- a/src/dawn/scene/SceneItem.cpp +++ b/src/dawn/scene/SceneItem.cpp @@ -34,8 +34,6 @@ void SceneItem::init() { assertFlagOff(state, SceneItemState::DEINITIALIZED, "Already deinited."); Flag::turnOn(state, SceneItemState::INITIALIZED); - auto sharedThis = shared_from_this(); - // Loop until all components initialized... while(true) { // Create copy of the components, components may chose to add more @@ -43,7 +41,7 @@ void SceneItem::init() { auto components = this->components; for(auto &component : components) { if(component->isInitialized()) continue; - component->init(sharedThis); + component->init(); } // If they are all initalized we are fine. diff --git a/src/dawn/scene/item/SceneItemComponents.cpp b/src/dawn/scene/item/SceneItemComponents.cpp index 481b1206..042537be 100644 --- a/src/dawn/scene/item/SceneItemComponents.cpp +++ b/src/dawn/scene/item/SceneItemComponents.cpp @@ -4,6 +4,8 @@ // https://opensource.org/licenses/MIT #include "SceneItemComponents.hpp" +#include "scene/SceneItem.hpp" +#include "assert/assert.hpp" using namespace Dawn; @@ -20,6 +22,14 @@ void SceneItemComponents::removeComponent( components.erase(it); } +void SceneItemComponents::sceneItemComponentsReferenceSelf( + std::shared_ptr component +) { + assertNotNull(component, "Component cannot be NULL"); + auto self = (SceneItem *)this; + component->item = self->shared_from_this(); +} + SceneItemComponents::~SceneItemComponents() { } \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItemComponents.hpp b/src/dawn/scene/item/SceneItemComponents.hpp index 6a178309..fc1066c6 100644 --- a/src/dawn/scene/item/SceneItemComponents.hpp +++ b/src/dawn/scene/item/SceneItemComponents.hpp @@ -10,6 +10,16 @@ namespace Dawn { class SceneItem; class SceneItemComponents { + private: + /** + * Internal method to set the scene item reference on a component. + * + * @param component Component to check. + */ + void sceneItemComponentsReferenceSelf( + std::shared_ptr component + ); + protected: std::vector> components; @@ -40,9 +50,9 @@ namespace Dawn { std::shared_ptr addComponent() { //Create the component and add it. std::shared_ptr component = std::make_shared(); - this->components.push_back( - static_pointer_cast(component) - ); + auto asSceneComponent = static_pointer_cast(component); + this->sceneItemComponentsReferenceSelf(asSceneComponent); + this->components.push_back(asSceneComponent); return component; } diff --git a/src/dawnopengl/display/shader/ShaderData.cpp b/src/dawnopengl/display/shader/ShaderData.cpp index e0993e39..30d1be8a 100644 --- a/src/dawnopengl/display/shader/ShaderData.cpp +++ b/src/dawnopengl/display/shader/ShaderData.cpp @@ -4,6 +4,7 @@ // https://opensource.org/licenses/MIT #include "display/shader/ShaderData.hpp" +#include "assert/assert.hpp" #include "assert/assertgl.hpp" using namespace Dawn; @@ -13,6 +14,37 @@ ShaderData::ShaderData( ) : IShaderData(structure) { glGenBuffers(1, &this->buffer); assertNoGLError(); + + // Quickly scan the structure for textures that we can bind to. + int32_t nextTexture = 0; + std::function&)> + recursivelyAppendTextures + ; + recursivelyAppendTextures = [&]( + const std::shared_ptr &structure + ) { + assertTrue( + structure->type == ShaderStructureType::STRUCT, + "Can only scan for texture indices in structures." + ); + + for(auto &field : structure->members) { + switch(field->type) { + case ShaderStructureType::STRUCT: + recursivelyAppendTextures(field); + break; + + case ShaderStructureType::TEXTURE2D: + this->textureIndices[field->getOffset()] = nextTexture++; + break; + + default: + break; + } + } + }; + recursivelyAppendTextures(structure); + } void ShaderData::upload() { @@ -20,19 +52,59 @@ void ShaderData::upload() { glBindBuffer(GL_UNIFORM_BUFFER, this->buffer); assertNoGLError(); - glBindBufferBase(GL_UNIFORM_BUFFER, 0, this->buffer); - assertNoGLError(); + this->bind(); glBufferData(GL_UNIFORM_BUFFER, this->structure->size, this->data, GL_STATIC_DRAW); assertNoGLError(); + + for(auto &pair : this->textureBindings) { + if(!pair.second) continue; + pair.second->bind(pair.first); + glUniform1i(pair.first, pair.first); + } this->dirty = false; } -void ShaderData::bind(const GLuint index) { - glBindBufferBase(GL_UNIFORM_BUFFER, index, this->buffer); +void ShaderData::bind() { + glBindBufferBase(GL_UNIFORM_BUFFER, 0, this->buffer); assertNoGLError(); } +template<> +std::shared_ptr IShaderData::get>( + const size_t offset +) { + ShaderData *self = (ShaderData *)this; + auto map = self->textureIndices.find(offset); + assertTrue( + map != self->textureIndices.end(), + "Texture is not found in the structure or the offset is incorrect." + ); + + auto index = map->second; + return self->textureBindings[index]; +} + +template<> +void IShaderData::set>( + const size_t offset, const std::shared_ptr value +) { + ShaderData *self = (ShaderData *)this; + auto map = self->textureIndices.find(offset); + assertTrue( + map != self->textureIndices.end(), + "Texture is not found in the structure or the offset is incorrect." + ); + + // I didn't implement it, but in theory we can check if the texture is + // already bound to an index and reuse its existing index to avoid + // binding a texture twice if we don't need to, however this would + // require all bindings be flushed and re-bound each frame. + auto index = map->second; + self->textureBindings[map->second] = value;// Releases textures too. + if(value) this->dirty = true; +} + ShaderData::~ShaderData() { if(this->buffer != -1) { glDeleteBuffers(1, &this->buffer); diff --git a/src/dawnopengl/display/shader/ShaderData.hpp b/src/dawnopengl/display/shader/ShaderData.hpp index bcf8f19e..8b7aa3ab 100644 --- a/src/dawnopengl/display/shader/ShaderData.hpp +++ b/src/dawnopengl/display/shader/ShaderData.hpp @@ -13,11 +13,16 @@ namespace Dawn { GLuint buffer = -1; public: + std::unordered_map textureIndices; + std::unordered_map> textureBindings; + ShaderData( const std::shared_ptr &structure ); - void upload(); - void bind(const GLuint index); + + void upload() override; + void bind() override; + ~ShaderData() override; }; } \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderProgram.cpp b/src/dawnopengl/display/shader/ShaderProgram.cpp index 8b2c4fcf..238ebb72 100644 --- a/src/dawnopengl/display/shader/ShaderProgram.cpp +++ b/src/dawnopengl/display/shader/ShaderProgram.cpp @@ -7,20 +7,9 @@ #include "assert/assert.hpp" #include "assert/assertgl.hpp" #include "display/shader/ShaderData.hpp" -#include "component/display/material/SimpleTexturedMaterial.hpp" using namespace Dawn; -struct TestData { - glm::mat4 projection; - glm::mat4 view; - glm::mat4 model; - int hasTexture; - int padding[3]; - struct Color color; - int test; -}; - void ShaderProgram::init( IModule *module, Slang::ComPtr session @@ -57,73 +46,11 @@ void ShaderProgram::init( assertNoGLError(); assertUnreachable("Failed to link shader program:\n%s", log); } +} - // So the uniforms that are in slang are kinda odd when compiled. +void ShaderProgram::bind() { glUseProgram(this->id); assertNoGLError(); - - data = this->structure->createData(); - - size_t offset = 0; - data->set(offset, glm::perspective( - glm::radians(45.0f), 800.0f / 600.0f, 0.1f, 10000.0f - )); - offset += sizeof(glm::mat4); - - data->set(offset, glm::lookAt( - glm::vec3(300,300,300), glm::vec3(0,0,0), glm::vec3(0,1,0) - )); - offset += sizeof(glm::mat4); - - data->set(offset, glm::mat4(1.0f)); - offset += sizeof(glm::mat4); - - data->set(offset, COLOR_WHITE); - offset += sizeof(glm::vec4); - - data->set(offset, true); - offset += sizeof(bool_t); - - data->upload(); - data->bind(0); - - - // struct TestData data; - // data.color = COLOR_WHITE; - // data.model = glm::mat4(1.0f); - // data.projection = glm::perspective( - // glm::radians(45.0f), 800.0f / 600.0f, 0.1f, 10000.0f - // ); - // data.view = glm::lookAt( - // glm::vec3(300,300,300), glm::vec3(0,0,0), glm::vec3(0,1,0) - // ); - // data.hasTexture = false; - // data.test = 1; - - // glBindBuffer(GL_UNIFORM_BUFFER, ubo); - // assertNoGLError(); - // glBindBufferBase(GL_UNIFORM_BUFFER, 0, ubo); - // assertNoGLError(); - // glBufferData(GL_UNIFORM_BUFFER, sizeof(struct TestData), &data, GL_STATIC_DRAW); - // assertNoGLError(); - - testTexture = std::make_shared(); - testTexture->setSize(2, 2, TextureFormat::RGBA, TextureDataFormat::UNSIGNED_BYTE); - uint8_t colors[4 * 4]; - colors[0] = 255; colors[1] = 255; colors[2] = 0; colors[3] = 255; - colors[4] = 0; colors[5] = 255; colors[6] = 0; colors[7] = 255; - colors[8] = 0; colors[9] = 0; colors[10] = 255; colors[11] = 255; - colors[12] = 255; colors[13] = 255; colors[14] = 255; colors[15] = 255; - testTexture->buffer(colors); - testTexture->bind(0); - - int index = glGetUniformLocation(this->id, "globalParams_uniforms_texture_0"); - assertNoGLError(); - std::cout << "Index: " << index << std::endl; - glUniform1i(index, 0); - assertNoGLError(); - - // data->write(shared_from_this()); } ShaderProgram::~ShaderProgram() { diff --git a/src/dawnopengl/display/shader/ShaderProgram.hpp b/src/dawnopengl/display/shader/ShaderProgram.hpp index a852d4d4..4a8c0a59 100644 --- a/src/dawnopengl/display/shader/ShaderProgram.hpp +++ b/src/dawnopengl/display/shader/ShaderProgram.hpp @@ -27,7 +27,10 @@ namespace Dawn { void init( IModule *module, Slang::ComPtr session - ); + ) override; + + void bind() override; + ~ShaderProgram() override; }; } \ No newline at end of file