From 0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 17 Jan 2021 19:36:30 +0000 Subject: Big reshuffle Fixes code quality warnings now picked up. --- application/display.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 application/display.h (limited to 'application/display.h') diff --git a/application/display.h b/application/display.h new file mode 100644 index 0000000..b561d77 --- /dev/null +++ b/application/display.h @@ -0,0 +1,26 @@ +#ifndef DISPLAY_INCLUDED_H +#define DISPLAY_INCLUDED_H + +#include "ptr.hpp" +#include +#include +#include +#include + +class Display { +public: + Display(int width, int height, const std::string & title); + virtual ~Display(); + + NO_COPY(Display); + NO_MOVE(Display); + + 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