From 82bfbf1f459d540b0e204bb873ca5786997b24da Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 12 Nov 2022 11:38:34 +0000 Subject: Refactor for per window context and more setup to the right places --- ui/window.cpp | 40 +++++++++++----------------------------- 1 file changed, 11 insertions(+), 29 deletions(-) (limited to 'ui/window.cpp') diff --git a/ui/window.cpp b/ui/window.cpp index 82f4d40..0d4c401 100644 --- a/ui/window.cpp +++ b/ui/window.cpp @@ -7,35 +7,24 @@ #include #include -static SDL_GLContext -SDL_GL_CreateContextAndGlewInit(SDL_Window * w) +Window::GlewInitHelper::GlewInitHelper() { - auto ctx = SDL_GL_CreateContext(w); - if (glewInit() != GLEW_OK) { - throw std::runtime_error {"Glew failed to initialize!"}; - } - glPixelStorei(GL_UNPACK_ALIGNMENT, 1); - glEnable(GL_CULL_FACE); - glCullFace(GL_BACK); - glEnable(GL_BLEND); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - return ctx; + [[maybe_unused]] static auto init = []() { + if (const auto r = glewInit(); r != GLEW_OK) { + throw std::runtime_error {reinterpret_cast(glewGetErrorString(r))}; + } + else { + return r; + } + }(); } -using GL_Context = std::remove_pointer_t; -using SDL_GLContextPtr = wrapped_ptrt; - Window::Window(size_t width, size_t height, const std::string & title) : size {static_cast(width), static_cast(height)}, m_window {title.c_str(), static_cast(SDL_WINDOWPOS_CENTERED), static_cast(SDL_WINDOWPOS_CENTERED), size.x, size.y, static_cast(SDL_WINDOW_OPENGL)}, - uiShader {[this](auto w) { - // must call glContent before creating the shader - std::ignore = glContext(); - return w; - }(width), - height} + glContext {m_window}, uiShader {width, height} { } @@ -73,17 +62,10 @@ Window::handleInput(const SDL_Event & e) return false; } -SDL_GLContext -Window::glContext() const -{ - static SDL_GLContextPtr m_glContext {m_window}; - return m_glContext; -} - void Window::refresh() const { - SDL_GL_MakeCurrent(m_window, glContext()); + SDL_GL_MakeCurrent(m_window, glContext); clear(0.0F, 0.0F, 0.0F, 1.0F); render(); -- cgit v1.2.3