Go to the source code of this file.
Classes | |
class | OVR::Platform::Win32::PlatformCore |
Namespaces | |
namespace | OVR |
namespace | OVR::Platform |
namespace | OVR::Platform::Win32 |
namespace | OVR::Render |
Defines | |
#define | OVR_PLATFORM_APP(AppClass) OVR_PLATFORM_APP_ARGS(AppClass, ()) |
#define | OVR_PLATFORM_APP_ARGS(AppClass, args) |
Functions | |
KeyCode | OVR::Platform::Win32::MapVKToKeyCode (unsigned vk) |
#define OVR_PLATFORM_APP | ( | AppClass | ) | OVR_PLATFORM_APP_ARGS(AppClass, ()) |
Definition at line 99 of file Win32_Platform.h.
#define OVR_PLATFORM_APP_ARGS | ( | AppClass, | |
args | |||
) |
OVR::Platform::Application* OVR::Platform::Application::CreateApplication() \ { OVR::System::Init(OVR::Log::ConfigureDefaultLog(OVR::LogMask_All)); \ return new AppClass args; } \ void OVR::Platform::Application::DestroyApplication(OVR::Platform::Application* app) \ { OVR::Platform::PlatformCore* platform = app->pPlatform; \ delete app; delete platform; OVR::System::Destroy(); };
Definition at line 90 of file Win32_Platform.h.