Skip to content
Snippets Groups Projects
Commit a080fc49 authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

comments for OGL4 backend

parent e646c7cb
No related branches found
No related tags found
No related merge requests found
...@@ -43,6 +43,13 @@ namespace fggl::gfx { ...@@ -43,6 +43,13 @@ namespace fggl::gfx {
float total; float total;
}; };
/**
* Class responsible for managing the OpenGL context.
*
* This class manages the OpenGL resources, all OpenGL resources are bound by its lifetime, and it is ultimately
* the class responsible for interacting with OpenGL. It is bound by the window it belongs to, and therefore if
* that window disappears so does this object.
*/
class OpenGL4Backend : public Graphics { class OpenGL4Backend : public Graphics {
public: public:
explicit OpenGL4Backend(const Window &owner); explicit OpenGL4Backend(const Window &owner);
...@@ -52,12 +59,42 @@ namespace fggl::gfx { ...@@ -52,12 +59,42 @@ namespace fggl::gfx {
OpenGL4Backend(const OpenGL4Backend&) = delete; OpenGL4Backend(const OpenGL4Backend&) = delete;
OpenGL4Backend& operator=(const OpenGL4Backend&) = delete; OpenGL4Backend& operator=(const OpenGL4Backend&) = delete;
// move (probably) bad
OpenGL4Backend(OpenGL4Backend&&) = delete;
OpenGL4Backend&& operator=(OpenGL4Backend&&) = delete;
/**
* Clear the backing buffer.
*/
void clear() override; void clear() override;
/**
* Notify the graphics system the framebuffer size has changed.
*
* @param width the new framebuffer width
* @param height the new framebuffer height
*/
void resize(int width, int height) override; void resize(int width, int height) override;
/**
* Perform a 2D rendering pass.
*
* @param paint the objects to paint on screen
*/
void draw2D(const Paint &paint) override; void draw2D(const Paint &paint) override;
/**
* Perform a 3D rendering pass.
*
* @param world the world to render
*/
void drawScene(ecs3::World& world) override; void drawScene(ecs3::World& world) override;
/**
* Get the 2D canvas bounds.
*
* @return
*/
inline Bounds canvasBounds() override { inline Bounds canvasBounds() override {
return m_canvasRenderer->bounds(); return m_canvasRenderer->bounds();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment