2016-01-07 08:17:16 -05:00
|
|
|
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
2015-12-05 02:42:09 -05:00
|
|
|
|
|
|
|
|
#include "OculusInput.h"
|
|
|
|
|
|
2016-04-11 23:01:18 -04:00
|
|
|
#if OCULUS_INPUT_SUPPORTED_PLATFORMS
|
2015-12-05 02:42:09 -05:00
|
|
|
|
|
|
|
|
#if PLATFORM_WINDOWS
|
|
|
|
|
// Required for OVR_CAPIShim.c
|
|
|
|
|
#include "AllowWindowsPlatformTypes.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !IS_MONOLITHIC // otherwise it will clash with OculusRift
|
|
|
|
|
#include <OVR_CAPIShim.c>
|
2016-04-11 23:01:18 -04:00
|
|
|
#include <OVR_CAPI_Util.cpp>
|
|
|
|
|
#include <OVR_StereoProjection.cpp>
|
2015-12-05 02:42:09 -05:00
|
|
|
#endif // #if !IS_MONOLITHIC
|
|
|
|
|
|
|
|
|
|
#if PLATFORM_WINDOWS
|
|
|
|
|
#include "HideWindowsPlatformTypes.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-04-11 23:01:18 -04:00
|
|
|
#endif // OCULUS_INPUT_SUPPORTED_PLATFORMS
|