ENGINE: Add an engine feature to indicate an engine can render to any resolution

This commit is contained in:
Bastien Bouclet 2014-09-01 11:31:22 +02:00 committed by Dries Harnie
parent ce5a954593
commit d8fe720ffe

View File

@ -128,7 +128,15 @@ public:
* If this feature is supported, then the corresponding MetaEngine *must*
* support the kSupportsListSaves feature.
*/
kSupportsSavingDuringRuntime
kSupportsSavingDuringRuntime,
/**
* Arbitrary resolutions are supported, that is, this engine allows
* the backend to override the resolution passed to OSystem::setupScreen.
* The engine will need to read the actual resolution used by the
* backend using OSystem::getWidth and OSystem::getHeight.
*/
kSupportsArbitraryResolutions // ResidualVM specific
};