From 8a8a0501590e83cbc598c7491fca0b767094466f Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Mon, 8 Apr 2024 14:22:22 +1000 Subject: 2 features: multi-sample anti-aliasing & Lua patches for images --- source/application/StarMainApplication_sdl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/application/StarMainApplication_sdl.cpp') diff --git a/source/application/StarMainApplication_sdl.cpp b/source/application/StarMainApplication_sdl.cpp index 12a03ee..cb631ff 100644 --- a/source/application/StarMainApplication_sdl.cpp +++ b/source/application/StarMainApplication_sdl.cpp @@ -2,7 +2,7 @@ #include "StarLogging.hpp" #include "StarSignalHandler.hpp" #include "StarTickRateMonitor.hpp" -#include "StarRenderer_opengl20.hpp" +#include "StarRenderer_opengl.hpp" #include "StarTtlCache.hpp" #include "StarImage.hpp" #include "StarImageProcessing.hpp" @@ -335,7 +335,7 @@ public: SDL_PauseAudioDevice(m_sdlAudioOutputDevice, 0); } - m_renderer = make_shared(); + m_renderer = make_shared(); m_renderer->setScreenSize(m_windowSize); m_cursorCache.setTimeToLive(30000); @@ -930,7 +930,7 @@ private: bool m_audioEnabled = false; bool m_quitRequested = false; - OpenGl20RendererPtr m_renderer; + OpenGlRendererPtr m_renderer; ApplicationUPtr m_application; PcPlatformServicesUPtr m_platformServices; }; -- cgit v1.2.3