diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2025-11-05 21:52:54 -0600 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2025-11-05 21:52:54 -0600 |
| commit | 2f20c12d82d367e6ebd3f5b772ebea62ccf05da7 (patch) | |
| tree | 26654aa778568f8f1bfc68d71ead9972f2bf2b3e /Source/Core/VideoCommon/VideoBackendBase.cpp | |
| parent | 2170080f5355fa7f808a22b58e7ff67d0b89edc8 (diff) | |
VideoCommon: pass the EFB buffer scale into the FramebufferManager instead of pulling it from config, in the future this will allow us to have multiple framebuffers
Diffstat (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoBackendBase.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index d964eac3f9..676349b65b 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -310,7 +310,8 @@ bool VideoBackendBase::InitializeShared(std::unique_ptr<AbstractGfx> gfx, if (!g_vertex_manager->Initialize() || !g_shader_cache->Initialize() || !g_perf_query->Initialize() || !g_presenter->Initialize() || - !g_framebuffer_manager->Initialize() || !g_texture_cache->Initialize() || + !g_framebuffer_manager->Initialize(g_ActiveConfig.iEFBScale) || + !g_texture_cache->Initialize() || (g_backend_info.bSupportsBBox && !g_bounding_box->Initialize()) || !g_graphics_mod_manager->Initialize()) { |
