// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "display/shader/IShaderProgram.hpp" #include "dawnopengl.hpp" namespace Dawn { class ShaderProgram : public IShaderProgram { private: GLuint id = -1; public: void init( const std::vector> &stages ) override; ~ShaderProgram(); }; }