mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 19:53:53 +00:00
15 lines
219 B
C++
15 lines
219 B
C++
|
#ifndef OPENMW_COMPONENTS_SDLUTIL_VSYNCMODE_H
|
||
|
#define OPENMW_COMPONENTS_SDLUTIL_VSYNCMODE_H
|
||
|
|
||
|
namespace SDLUtil
|
||
|
{
|
||
|
enum VSyncMode
|
||
|
{
|
||
|
Disabled = 0,
|
||
|
Enabled = 1,
|
||
|
Adaptive = 2
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|