From e6d58cf451270eb987282dc727c4aa4042f8ee4f Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Tue, 19 Oct 2021 17:01:12 -0500 Subject: [PATCH] xrt: Add a D3D11 error --- src/xrt/include/xrt/xrt_results.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xrt/include/xrt/xrt_results.h b/src/xrt/include/xrt/xrt_results.h index fd9897c51..73aaa2243 100644 --- a/src/xrt/include/xrt/xrt_results.h +++ b/src/xrt/include/xrt/xrt_results.h @@ -146,4 +146,8 @@ typedef enum xrt_result * Creating a @ref xrt_device failed. */ XRT_ERROR_DEVICE_CREATION_FAILED = -22, + /*! + * Some D3D11 error + */ + XRT_ERROR_D3D11 = -23, } xrt_result_t;