COMMON: Added kFeatureHiDPI and return it from the backend

This commit is contained in:
Eugene Sandulenko 2020-11-02 09:01:07 +01:00
parent bb15133a0a
commit c06d47e397
2 changed files with 7 additions and 0 deletions

View File

@ -255,6 +255,8 @@ bool OpenGLSdlGraphicsManager::getFeatureState(OSystem::Feature f) const {
return _wantsFullScreen;
}
#endif
case OSystem::kFeatureHiDPI:
return getGraphicsModeScale(0) == 2;
default:
return OpenGLGraphicsManager::getFeatureState(f);

View File

@ -368,6 +368,11 @@ public:
*/
kFeatureFilteringMode,
/**
* Indicates that GUI runs in HiDPI mode
*/
kFeatureHiDPI,
/**
* Indicate if stretch modes are supported by the backend.
*/