diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index fe48ddf..03222f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4,6 +4,7 @@ #include <glm/glm.hpp> #include "../include/RenderBackend/OpenGL/VertexShader.hpp" #include "../include/RenderBackend/OpenGL/PixelShader.hpp" +#include "../include/RenderBackend/OpenGL/ShaderProgram.hpp" #include "../include/RenderBackend/OpenGL/DeviceMemory.hpp" using namespace amalgine; @@ -54,6 +55,8 @@ int main() DeviceMemory triangle; triangle.copyStatic(vertices); + ShaderProgram shaderProgram; + VertexShader vertexShader; ShaderInputVec2 inputPosition = vertexShader.defineInputVec2("position"); @@ -63,7 +66,7 @@ int main() }); PixelShader pixelShader; - ShaderOutputVec4 outColor = pixelShader.defineOutputVec4("outColor"); + ShaderOutputVec4 outColor = shaderProgram.defineOutputVec4("outColor"); pixelShader.defineMain([&outColor]() { |