Skip to content

Commit

Permalink
Remove unused Host_ShowVideoConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Sep 28, 2018
1 parent a5c74cd commit a877d5f
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 27 deletions.
4 changes: 0 additions & 4 deletions Source/Android/jni/MainAndroid.cpp
Expand Up @@ -127,10 +127,6 @@ bool Host_RendererIsFullscreen()
return false;
}

void Host_ShowVideoConfig(void*, const std::string&)
{
}

void Host_YieldToUI()
{
}
Expand Down
1 change: 0 additions & 1 deletion Source/Core/Core/Host.h
Expand Up @@ -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);

Expand Down
4 changes: 0 additions & 4 deletions Source/Core/DolphinNoGUI/MainNoGUI.cpp
Expand Up @@ -130,10 +130,6 @@ bool Host_RendererIsFullscreen()
return rendererIsFullscreen;
}

void Host_ShowVideoConfig(void*, const std::string&)
{
}

void Host_YieldToUI()
{
}
Expand Down
3 changes: 0 additions & 3 deletions Source/Core/DolphinQt/Host.cpp
Expand Up @@ -150,9 +150,6 @@ bool Host_UINeedsControllerState()
{
return Settings::Instance().IsControllerStateNeeded();
}
void Host_ShowVideoConfig(void* parent, const std::string& backend_name)
{
}
void Host_RefreshDSPDebuggerWindow()
{
}
8 changes: 0 additions & 8 deletions Source/Core/VideoCommon/VideoBackendBase.cpp
Expand Up @@ -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();
Expand Down
1 change: 0 additions & 1 deletion Source/Core/VideoCommon/VideoBackendBase.h
Expand Up @@ -40,7 +40,6 @@ class VideoBackendBase

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();
Expand Down
3 changes: 0 additions & 3 deletions Source/DSPTool/StubHost.cpp
Expand Up @@ -46,9 +46,6 @@ bool Host_RendererIsFullscreen()
{
return false;
}
void Host_ShowVideoConfig(void*, const std::string&)
{
}
void Host_YieldToUI()
{
}
Expand Down
3 changes: 0 additions & 3 deletions Source/UnitTests/StubHost.cpp
Expand Up @@ -48,9 +48,6 @@ bool Host_RendererIsFullscreen()
{
return false;
}
void Host_ShowVideoConfig(void*, const std::string&)
{
}
void Host_YieldToUI()
{
}
Expand Down

0 comments on commit a877d5f

Please sign in to comment.