mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-10 10:08:51 +00:00
VideoBackends: Merge Initialize and Shutdown functions.
This commit is contained in:
parent
b16333a25c
commit
7833ff25df
27 changed files with 154 additions and 282 deletions
|
@ -73,6 +73,8 @@ public:
|
|||
|
||||
virtual std::string GetName() const = 0;
|
||||
virtual std::string GetDisplayName() const { return GetName(); }
|
||||
virtual std::string GetConfigName() const = 0;
|
||||
|
||||
virtual void ShowConfig(void*) = 0;
|
||||
|
||||
virtual void Video_Prepare() = 0;
|
||||
|
@ -98,6 +100,8 @@ public:
|
|||
|
||||
protected:
|
||||
void InitializeShared();
|
||||
void ShutdownShared();
|
||||
void CleanupShared();
|
||||
|
||||
bool m_initialized = false;
|
||||
bool m_invalid = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue