diff options
author | Sven Gothel <[email protected]> | 2015-07-15 21:12:04 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-07-15 21:12:04 +0200 |
commit | 1f262ca2dbe00ba761e9b91994e93fee65d6efc1 (patch) | |
tree | 55c5b013ac5dd5e1edee5cc1ed09739a914de3e0 /LibOVR/Src/Displays/OVR_Display.cpp | |
parent | a352ecb7e63304034ac93332cf0c4d9183df867e (diff) |
Fix build for Windows/MingW64 ...
Diffstat (limited to 'LibOVR/Src/Displays/OVR_Display.cpp')
-rwxr-xr-x | LibOVR/Src/Displays/OVR_Display.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/LibOVR/Src/Displays/OVR_Display.cpp b/LibOVR/Src/Displays/OVR_Display.cpp index 7c74eee..2b899af 100755 --- a/LibOVR/Src/Displays/OVR_Display.cpp +++ b/LibOVR/Src/Displays/OVR_Display.cpp @@ -45,6 +45,25 @@ void Display::SetDirectDisplayInitialized(bool initialized) DirectDisplayInitialized = initialized; } +#if defined(HEADLESS_APP) + +bool Display::Initialize() +{ + return true; +} + +void Display::Shutdown() +{ +} + +bool Display::InCompatibilityMode( bool displaySearch ) +{ + OVR_UNUSED( displaySearch ); + return true; +} + + +#endif /* defined(HEADLESS_APP) */ //----------------------------------------------------------------------------- // EDID Parsing |