mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
More range-based loops and overrides
This commit is contained in:
@ -11,8 +11,8 @@ class VideoBackend : public VideoBackendHardware
|
||||
bool Initialize(void *&) override;
|
||||
void Shutdown() override;
|
||||
|
||||
std::string GetName() override;
|
||||
std::string GetDisplayName() override;
|
||||
std::string GetName() const override;
|
||||
std::string GetDisplayName() const override;
|
||||
|
||||
void Video_Prepare() override;
|
||||
void Video_Cleanup() override;
|
||||
|
@ -92,12 +92,12 @@ Make AA apply instantly during gameplay if possible
|
||||
namespace OGL
|
||||
{
|
||||
|
||||
std::string VideoBackend::GetName()
|
||||
std::string VideoBackend::GetName() const
|
||||
{
|
||||
return "OGL";
|
||||
}
|
||||
|
||||
std::string VideoBackend::GetDisplayName()
|
||||
std::string VideoBackend::GetDisplayName() const
|
||||
{
|
||||
if (GLInterface != nullptr && GLInterface->GetMode() == GLInterfaceMode::MODE_OPENGLES3)
|
||||
return "OpenGLES";
|
||||
|
Reference in New Issue
Block a user