mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
Renderer: Add a base Initialize() method to match Shutdown()
This commit is contained in:
@ -93,6 +93,11 @@ Renderer::Renderer(int backbuffer_width, int backbuffer_height)
|
||||
|
||||
Renderer::~Renderer() = default;
|
||||
|
||||
bool Renderer::Initialize()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
void Renderer::Shutdown()
|
||||
{
|
||||
// First stop any framedumping, which might need to dump the last xfb frame. This process
|
||||
|
Reference in New Issue
Block a user