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