summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2017-03-04 16:40:08 +1000
committerStenzek <stenzek@gmail.com>2017-03-04 16:42:16 +1000
commit238a70b0060c1d45b12d4702bb41725e9ebb5fa6 (patch)
treea6a0a51cc1bd19df0cd539b45cdbd659fad3a3c3 /Source/Core/VideoBackends/Software/SWmain.cpp
parent277829d842ae4aca234de95fb295ed9da043a9fa (diff)
VideoCommon: Move some common initialization logic to RenderBase
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index adbe5046b6..11ddad99b4 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -181,6 +181,7 @@ void VideoSoftware::Video_Prepare()
g_vertex_manager = std::make_unique<SWVertexLoader>();
g_perf_query = std::make_unique<PerfQuery>();
g_texture_cache = std::make_unique<TextureCache>();
+ g_renderer->InitializeCommon();
SWRenderer::Init();
g_framebuffer_manager = std::make_unique<FramebufferManager>();
}