diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-11-11 19:41:28 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-11-14 23:45:57 +0000 |
commit | 915c18b874c0fd4fab5da60e416ecf405512a8f7 (patch) | |
tree | 49e9be2b7388d94d36590fafe918fc2814763740 /ui | |
parent | Restructure how shaders are worked with (diff) | |
download | ilt-915c18b874c0fd4fab5da60e416ecf405512a8f7.tar.bz2 ilt-915c18b874c0fd4fab5da60e416ecf405512a8f7.tar.xz ilt-915c18b874c0fd4fab5da60e416ecf405512a8f7.zip |
Extract SDL_Application helper into libilt
Diffstat (limited to 'ui')
-rw-r--r-- | ui/applicationBase.cpp | 24 | ||||
-rw-r--r-- | ui/applicationBase.h | 12 |
2 files changed, 36 insertions, 0 deletions
diff --git a/ui/applicationBase.cpp b/ui/applicationBase.cpp new file mode 100644 index 0000000..5c87359 --- /dev/null +++ b/ui/applicationBase.cpp @@ -0,0 +1,24 @@ +#include "applicationBase.h" +#include <SDL2/SDL.h> + +ApplicationBase::ApplicationBase() +{ + SDL_Init(SDL_INIT_EVERYTHING); + + SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); + SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); + SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); + SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8); + SDL_GL_SetAttribute(SDL_GL_BUFFER_SIZE, 32); + SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); + SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); + + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 5); +} + +ApplicationBase::~ApplicationBase() +{ + SDL_Quit(); +} diff --git a/ui/applicationBase.h b/ui/applicationBase.h new file mode 100644 index 0000000..57995ca --- /dev/null +++ b/ui/applicationBase.h @@ -0,0 +1,12 @@ +#pragma once + +#include <special_members.hpp> + +class ApplicationBase { +public: + ApplicationBase(); + virtual ~ApplicationBase(); + + NO_COPY(ApplicationBase); + NO_MOVE(ApplicationBase); +}; |