From f7d2eea22957d75a34654a1b78ea64e7761ef4b8 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 17 Jan 2021 23:35:24 +0000 Subject: Split window and display (application) classes --- gfx/window.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 gfx/window.h (limited to 'gfx/window.h') diff --git a/gfx/window.h b/gfx/window.h new file mode 100644 index 0000000..3ac583f --- /dev/null +++ b/gfx/window.h @@ -0,0 +1,26 @@ +#ifndef DISPLAY_INCLUDED_H +#define DISPLAY_INCLUDED_H + +#include "ptr.hpp" +#include +#include +#include +#include + +class Window { +public: + Window(int width, int height, const std::string & title); + ~Window() = default; + + NO_COPY(Window); + NO_MOVE(Window); + + void Clear(float r, float g, float b, float a) const; + void SwapBuffers() const; + +private: + wrapped_ptr m_window; + wrapped_ptr> m_glContext; +}; + +#endif -- cgit v1.2.3