diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-04-08 14:22:22 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-04-08 14:22:22 +1000 |
commit | 8a8a0501590e83cbc598c7491fca0b767094466f (patch) | |
tree | 4fd806e646179fa9a7e4027cc60e19492d003ade /source/application/StarMainApplication_sdl.cpp | |
parent | 4458d2e85ed7f9e373af290dbe8063a52d2824b5 (diff) |
2 features: multi-sample anti-aliasing & Lua patches for images
Diffstat (limited to 'source/application/StarMainApplication_sdl.cpp')
-rw-r--r-- | source/application/StarMainApplication_sdl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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<OpenGl20Renderer>(); + m_renderer = make_shared<OpenGlRenderer>(); 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; }; |