Qt: Add renderer/resolution to status bar

This commit is contained in:
Connor McLaughlin
2021-03-28 13:47:10 +10:00
parent dec2d48bfe
commit ddea2818d9
16 changed files with 82 additions and 17 deletions

View File

@ -40,9 +40,9 @@ GPU_SW::~GPU_SW()
m_host_display->ClearDisplayTexture();
}
bool GPU_SW::IsHardwareRenderer() const
GPURenderer GPU_SW::GetRendererType() const
{
return false;
return GPURenderer::Software;
}
bool GPU_SW::Initialize(HostDisplay* host_display)