ENGINE: Add an engine feature to indicate an engine can render to any resolution
This commit is contained in:
parent
ce5a954593
commit
d8fe720ffe
1 changed files with 9 additions and 1 deletions
|
@ -128,7 +128,15 @@ public:
|
||||||
* If this feature is supported, then the corresponding MetaEngine *must*
|
* If this feature is supported, then the corresponding MetaEngine *must*
|
||||||
* support the kSupportsListSaves feature.
|
* 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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue