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 --- application/display.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 application/display.h (limited to 'application/display.h') diff --git a/application/display.h b/application/display.h deleted file mode 100644 index b561d77..0000000 --- a/application/display.h +++ /dev/null @@ -1,26 +0,0 @@ -#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