diff options
Diffstat (limited to 'application/display.h')
-rw-r--r-- | application/display.h | 26 |
1 files changed, 0 insertions, 26 deletions
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 <SDL2/SDL.h>
-#include <special_members.hpp>
-#include <string>
-#include <type_traits>
-
-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<SDL_Window> m_window;
- wrapped_ptr<std::remove_pointer_t<SDL_GLContext>> m_glContext;
-};
-
-#endif
|