summaryrefslogtreecommitdiffhomepage
path: root/src/external/OculusSDK/LibOVR/Include/OVR_ErrorCode.h
diff options
context:
space:
mode:
authorRay <[email protected]>2017-05-14 18:30:21 +0200
committerRay <[email protected]>2017-05-14 18:30:21 +0200
commita63ad0fec4b6c4130b449f3baa608f26f86a276d (patch)
treef08a7fc073611487fec33bd771df2778c45eee0b /src/external/OculusSDK/LibOVR/Include/OVR_ErrorCode.h
parentedb9e4159da7533015923e62a3fd1c5184795ba3 (diff)
downloadraylib-a63ad0fec4b6c4130b449f3baa608f26f86a276d.tar.gz
raylib-a63ad0fec4b6c4130b449f3baa608f26f86a276d.zip
Remove OculusSDK library
Just waiting for a better future alternative (multiplatform)... OpenXR ?
Diffstat (limited to 'src/external/OculusSDK/LibOVR/Include/OVR_ErrorCode.h')
-rw-r--r--src/external/OculusSDK/LibOVR/Include/OVR_ErrorCode.h156
1 files changed, 0 insertions, 156 deletions
diff --git a/src/external/OculusSDK/LibOVR/Include/OVR_ErrorCode.h b/src/external/OculusSDK/LibOVR/Include/OVR_ErrorCode.h
deleted file mode 100644
index a8b810ea..00000000
--- a/src/external/OculusSDK/LibOVR/Include/OVR_ErrorCode.h
+++ /dev/null
@@ -1,156 +0,0 @@
-/********************************************************************************//**
-\file OVR_ErrorCode.h
-\brief This header provides LibOVR error code declarations.
-\copyright Copyright 2015-2016 Oculus VR, LLC All Rights reserved.
-*************************************************************************************/
-
-#ifndef OVR_ErrorCode_h
-#define OVR_ErrorCode_h
-
-
-#include "OVR_Version.h"
-#include <stdint.h>
-
-
-
-
-#ifndef OVR_RESULT_DEFINED
-#define OVR_RESULT_DEFINED ///< Allows ovrResult to be independently defined.
-/// API call results are represented at the highest level by a single ovrResult.
-typedef int32_t ovrResult;
-#endif
-
-
-/// \brief Indicates if an ovrResult indicates success.
-///
-/// Some functions return additional successful values other than ovrSucces and
-/// require usage of this macro to indicate successs.
-///
-#if !defined(OVR_SUCCESS)
- #define OVR_SUCCESS(result) (result >= 0)
-#endif
-
-
-/// \brief Indicates if an ovrResult indicates an unqualified success.
-///
-/// This is useful for indicating that the code intentionally wants to
-/// check for result == ovrSuccess as opposed to OVR_SUCCESS(), which
-/// checks for result >= ovrSuccess.
-///
-#if !defined(OVR_UNQUALIFIED_SUCCESS)
- #define OVR_UNQUALIFIED_SUCCESS(result) (result == ovrSuccess)
-#endif
-
-
-/// \brief Indicates if an ovrResult indicates failure.
-///
-#if !defined(OVR_FAILURE)
- #define OVR_FAILURE(result) (!OVR_SUCCESS(result))
-#endif
-
-
-// Success is a value greater or equal to 0, while all error types are negative values.
-#ifndef OVR_SUCCESS_DEFINED
-#define OVR_SUCCESS_DEFINED ///< Allows ovrResult to be independently defined.
-typedef enum ovrSuccessType_
-{
- /// This is a general success result. Use OVR_SUCCESS to test for success.
- ovrSuccess = 0,
-} ovrSuccessType;
-#endif
-
-// Public success types
-// Success is a value greater or equal to 0, while all error types are negative values.
-typedef enum ovrSuccessTypes_
-{
- /// Returned from a call to SubmitFrame. The call succeeded, but what the app
- /// rendered will not be visible on the HMD. Ideally the app should continue
- /// calling SubmitFrame, but not do any rendering. When the result becomes
- /// ovrSuccess, rendering should continue as usual.
- ovrSuccess_NotVisible = 1000,
-
-} ovrSuccessTypes;
-
-// Public error types
-typedef enum ovrErrorType_
-{
- /* General errors */
- ovrError_MemoryAllocationFailure = -1000, ///< Failure to allocate memory.
- ovrError_InvalidSession = -1002, ///< Invalid ovrSession parameter provided.
- ovrError_Timeout = -1003, ///< The operation timed out.
- ovrError_NotInitialized = -1004, ///< The system or component has not been initialized.
- ovrError_InvalidParameter = -1005, ///< Invalid parameter provided. See error info or log for details.
- ovrError_ServiceError = -1006, ///< Generic service error. See error info or log for details.
- ovrError_NoHmd = -1007, ///< The given HMD doesn't exist.
- ovrError_Unsupported = -1009, ///< Function call is not supported on this hardware/software
- ovrError_DeviceUnavailable = -1010, ///< Specified device type isn't available.
- ovrError_InvalidHeadsetOrientation = -1011, ///< The headset was in an invalid orientation for the requested operation (e.g. vertically oriented during ovr_RecenterPose).
- ovrError_ClientSkippedDestroy = -1012, ///< The client failed to call ovr_Destroy on an active session before calling ovr_Shutdown. Or the client crashed.
- ovrError_ClientSkippedShutdown = -1013, ///< The client failed to call ovr_Shutdown or the client crashed.
- ovrError_ServiceDeadlockDetected = -1014, ///< The service watchdog discovered a deadlock.
- ovrError_InvalidOperation = -1015, ///< Function call is invalid for object's current state
-
- /* Audio error range, reserved for Audio errors. */
- ovrError_AudioDeviceNotFound = -2001, ///< Failure to find the specified audio device.
- ovrError_AudioComError = -2002, ///< Generic COM error.
-
- /* Initialization errors. */
- ovrError_Initialize = -3000, ///< Generic initialization error.
- ovrError_LibLoad = -3001, ///< Couldn't load LibOVRRT.
- ovrError_LibVersion = -3002, ///< LibOVRRT version incompatibility.
- ovrError_ServiceConnection = -3003, ///< Couldn't connect to the OVR Service.
- ovrError_ServiceVersion = -3004, ///< OVR Service version incompatibility.
- ovrError_IncompatibleOS = -3005, ///< The operating system version is incompatible.
- ovrError_DisplayInit = -3006, ///< Unable to initialize the HMD display.
- ovrError_ServerStart = -3007, ///< Unable to start the server. Is it already running?
- ovrError_Reinitialization = -3008, ///< Attempting to re-initialize with a different version.
- ovrError_MismatchedAdapters = -3009, ///< Chosen rendering adapters between client and service do not match
- ovrError_LeakingResources = -3010, ///< Calling application has leaked resources
- ovrError_ClientVersion = -3011, ///< Client version too old to connect to service
- ovrError_OutOfDateOS = -3012, ///< The operating system is out of date.
- ovrError_OutOfDateGfxDriver = -3013, ///< The graphics driver is out of date.
- ovrError_IncompatibleGPU = -3014, ///< The graphics hardware is not supported
- ovrError_NoValidVRDisplaySystem = -3015, ///< No valid VR display system found.
- ovrError_Obsolete = -3016, ///< Feature or API is obsolete and no longer supported.
- ovrError_DisabledOrDefaultAdapter = -3017, ///< No supported VR display system found, but disabled or driverless adapter found.
- ovrError_HybridGraphicsNotSupported = -3018, ///< The system is using hybrid graphics (Optimus, etc...), which is not support.
- ovrError_DisplayManagerInit = -3019, ///< Initialization of the DisplayManager failed.
- ovrError_TrackerDriverInit = -3020, ///< Failed to get the interface for an attached tracker
- ovrError_LibSignCheck = -3021, ///< LibOVRRT signature check failure.
- ovrError_LibPath = -3022, ///< LibOVRRT path failure.
- ovrError_LibSymbols = -3023, ///< LibOVRRT symbol resolution failure.
-
- /* Rendering errors */
- ovrError_DisplayLost = -6000, ///< In the event of a system-wide graphics reset or cable unplug this is returned to the app.
- ovrError_TextureSwapChainFull = -6001, ///< ovr_CommitTextureSwapChain was called too many times on a texture swapchain without calling submit to use the chain.
- ovrError_TextureSwapChainInvalid = -6002, ///< The ovrTextureSwapChain is in an incomplete or inconsistent state. Ensure ovr_CommitTextureSwapChain was called at least once first.
- ovrError_GraphicsDeviceReset = -6003, ///< Graphics device has been reset (TDR, etc...)
- ovrError_DisplayRemoved = -6004, ///< HMD removed from the display adapter
- ovrError_ContentProtectionNotAvailable = -6005,///<Content protection is not available for the display
- ovrError_ApplicationInvisible = -6006, ///< Application declared itself as an invisible type and is not allowed to submit frames.
- ovrError_Disallowed = -6007, ///< The given request is disallowed under the current conditions.
- ovrError_DisplayPluggedIncorrectly = -6008, ///< Display portion of HMD is plugged into an incompatible port (ex: IGP)
-
- /* Fatal errors */
- ovrError_RuntimeException = -7000, ///< A runtime exception occurred. The application is required to shutdown LibOVR and re-initialize it before this error state will be cleared.
-
- /* Calibration errors */
- ovrError_NoCalibration = -9000, ///< Result of a missing calibration block
- ovrError_OldVersion = -9001, ///< Result of an old calibration block
- ovrError_MisformattedBlock = -9002, ///< Result of a bad calibration block due to lengths
-
-
-} ovrErrorType;
-
-
-
-/// Provides information about the last error.
-/// \see ovr_GetLastErrorInfo
-typedef struct ovrErrorInfo_
-{
- ovrResult Result; ///< The result from the last API call that generated an error ovrResult.
- char ErrorString[512]; ///< A UTF8-encoded null-terminated English string describing the problem. The format of this string is subject to change in future versions.
-} ovrErrorInfo;
-
-
-#endif /* OVR_ErrorCode_h */