mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 15:01:16 +01:00
Remove unused Host_ShowVideoConfig
This commit is contained in:
parent
a5c74cd6d1
commit
a877d5f6dc
@ -127,10 +127,6 @@ bool Host_RendererIsFullscreen()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Host_ShowVideoConfig(void*, const std::string&)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void Host_YieldToUI()
|
void Host_YieldToUI()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,6 @@ void Host_RequestRenderWindowSize(int width, int height);
|
|||||||
void Host_UpdateDisasmDialog();
|
void Host_UpdateDisasmDialog();
|
||||||
void Host_UpdateMainFrame();
|
void Host_UpdateMainFrame();
|
||||||
void Host_UpdateTitle(const std::string& title);
|
void Host_UpdateTitle(const std::string& title);
|
||||||
void Host_ShowVideoConfig(void* parent, const std::string& backend_name);
|
|
||||||
void Host_YieldToUI();
|
void Host_YieldToUI();
|
||||||
void Host_UpdateProgressDialog(const char* caption, int position, int total);
|
void Host_UpdateProgressDialog(const char* caption, int position, int total);
|
||||||
|
|
||||||
|
@ -130,10 +130,6 @@ bool Host_RendererIsFullscreen()
|
|||||||
return rendererIsFullscreen;
|
return rendererIsFullscreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Host_ShowVideoConfig(void*, const std::string&)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void Host_YieldToUI()
|
void Host_YieldToUI()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -150,9 +150,6 @@ bool Host_UINeedsControllerState()
|
|||||||
{
|
{
|
||||||
return Settings::Instance().IsControllerStateNeeded();
|
return Settings::Instance().IsControllerStateNeeded();
|
||||||
}
|
}
|
||||||
void Host_ShowVideoConfig(void* parent, const std::string& backend_name)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Host_RefreshDSPDebuggerWindow()
|
void Host_RefreshDSPDebuggerWindow()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -60,14 +60,6 @@ __declspec(dllexport) DWORD NvOptimusEnablement = 1;
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void VideoBackendBase::ShowConfig(void* parent_handle)
|
|
||||||
{
|
|
||||||
if (!m_initialized)
|
|
||||||
InitBackendInfo();
|
|
||||||
|
|
||||||
Host_ShowVideoConfig(parent_handle, GetDisplayName());
|
|
||||||
}
|
|
||||||
|
|
||||||
void VideoBackendBase::Video_ExitLoop()
|
void VideoBackendBase::Video_ExitLoop()
|
||||||
{
|
{
|
||||||
Fifo::ExitGpuLoop();
|
Fifo::ExitGpuLoop();
|
||||||
|
@ -40,7 +40,6 @@ public:
|
|||||||
|
|
||||||
virtual std::string GetName() const = 0;
|
virtual std::string GetName() const = 0;
|
||||||
virtual std::string GetDisplayName() const { return GetName(); }
|
virtual std::string GetDisplayName() const { return GetName(); }
|
||||||
void ShowConfig(void* parent_handle);
|
|
||||||
virtual void InitBackendInfo() = 0;
|
virtual void InitBackendInfo() = 0;
|
||||||
|
|
||||||
void Video_ExitLoop();
|
void Video_ExitLoop();
|
||||||
|
@ -46,9 +46,6 @@ bool Host_RendererIsFullscreen()
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
void Host_ShowVideoConfig(void*, const std::string&)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Host_YieldToUI()
|
void Host_YieldToUI()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -48,9 +48,6 @@ bool Host_RendererIsFullscreen()
|
|||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
void Host_ShowVideoConfig(void*, const std::string&)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Host_YieldToUI()
|
void Host_YieldToUI()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user