6030c5ce41
We move the initialization of the renderer to the core class, while keeping the creation of it and any other specifics in video_core. This way we can ensure that the renderer is initialized and doesn't give unfettered access to the renderer. This also makes dependencies on types more explicit. For example, the GPU class doesn't need to depend on the existence of a renderer, it only needs to care about whether or not it has a rasterizer, but since it was accessing the global variable, it was also making the renderer a part of its dependency chain. By adjusting the interface, we can get rid of this dependency.
27 lines
825 B
C++
27 lines
825 B
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <memory>
|
|
#include "core/frontend/emu_window.h"
|
|
#include "video_core/renderer_base.h"
|
|
#include "video_core/renderer_opengl/gl_rasterizer.h"
|
|
|
|
namespace VideoCore {
|
|
|
|
RendererBase::RendererBase(EmuWindow& window) : render_window{window} {}
|
|
RendererBase::~RendererBase() = default;
|
|
|
|
void RendererBase::UpdateCurrentFramebufferLayout() {
|
|
const Layout::FramebufferLayout& layout = render_window.GetFramebufferLayout();
|
|
|
|
render_window.UpdateCurrentFramebufferLayout(layout.width, layout.height);
|
|
}
|
|
|
|
void RendererBase::RefreshRasterizerSetting() {
|
|
if (rasterizer == nullptr) {
|
|
rasterizer = std::make_unique<RasterizerOpenGL>(render_window);
|
|
}
|
|
}
|
|
|
|
} // namespace VideoCore
|