Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
104 lines
2.8 KiB
C++
104 lines
2.8 KiB
C++
// Copyright (c) 2018-2025 The Khronos Group Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
//
|
|
// This file includes headers with types which openxr.h depends on in order
|
|
// to compile when platforms, graphics apis, and the like are enabled.
|
|
|
|
#pragma once
|
|
|
|
#ifdef XR_USE_PLATFORM_ANDROID
|
|
#include <android/native_window.h>
|
|
#include <android/window.h>
|
|
#include <android/native_window_jni.h>
|
|
#endif // XR_USE_PLATFORM_ANDROID
|
|
|
|
#ifdef XR_USE_PLATFORM_WIN32
|
|
|
|
#include <winapifamily.h>
|
|
#if !(WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM))
|
|
// Enable desktop partition APIs, such as RegOpenKeyEx, LoadLibraryEx, PathFileExists etc.
|
|
#undef WINAPI_PARTITION_DESKTOP
|
|
#define WINAPI_PARTITION_DESKTOP 1
|
|
#endif
|
|
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif // !NOMINMAX
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif // !WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
#include <unknwn.h>
|
|
|
|
#endif // XR_USE_PLATFORM_WIN32
|
|
|
|
#ifdef XR_USE_GRAPHICS_API_D3D11
|
|
#include <d3d11.h>
|
|
#endif // XR_USE_GRAPHICS_API_D3D11
|
|
|
|
#ifdef XR_USE_GRAPHICS_API_D3D12
|
|
#include <d3d12.h>
|
|
#endif // XR_USE_GRAPHICS_API_D3D12
|
|
|
|
#ifdef XR_USE_PLATFORM_XLIB
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xutil.h>
|
|
#endif // XR_USE_PLATFORM_XLIB
|
|
|
|
#ifdef XR_USE_PLATFORM_XCB
|
|
#include <xcb/xcb.h>
|
|
#endif // XR_USE_PLATFORM_XCB
|
|
|
|
#if defined(XR_USE_GRAPHICS_API_OPENGL_ES) || defined(XR_USE_PLATFORM_EGL) || defined(XR_USE_PLATFORM_ANDROID)
|
|
#ifdef XRDEPENDENCIES_USE_GLAD
|
|
#include <glad/egl.h>
|
|
#else
|
|
#include <EGL/egl.h>
|
|
#endif
|
|
#endif // XR_USE_GRAPHICS_API_OPENGL_ES || XR_USE_PLATFORM_EGL || XR_USE_PLATFORM_ANDROID
|
|
|
|
#if defined(XR_USE_GRAPHICS_API_OPENGL) && (defined(XR_USE_PLATFORM_XLIB) || defined(XR_USE_PLATFORM_XCB))
|
|
#ifdef XRDEPENDENCIES_USE_GLAD
|
|
#include <glad/glx.h>
|
|
#else
|
|
#include <GL/glx.h>
|
|
#endif
|
|
#endif // XR_USE_GRAPHICS_API_OPENGL && XR_USE_PLATFORM_XLIB || XR_USE_PLATFORM_XCB
|
|
|
|
#if defined(XR_USE_GRAPHICS_API_OPENGL) && defined(XR_USE_PLATFORM_XCB)
|
|
#include <xcb/glx.h>
|
|
#endif // XR_USE_GRAPHICS_API_OPENGL && XR_USE_PLATFORM_XCB
|
|
|
|
#if defined(XR_USE_GRAPHICS_API_OPENGL) && defined(XR_USE_PLATFORM_MACOS) && !defined(XRDEPENDENCIES_USE_GLAD)
|
|
#include <OpenCL/cl_gl_ext.h>
|
|
#endif // XR_USE_GRAPHICS_API_OPENGL && XR_USE_PLATFORM_MACOS && !XRDEPENDENCIES_USE_GLAD
|
|
|
|
#ifdef XR_USE_GRAPHICS_API_VULKAN
|
|
#include <vulkan/vulkan.h>
|
|
#endif // XR_USE_GRAPHICS_API_VULKAN
|
|
|
|
#ifdef XR_USE_PLATFORM_WAYLAND
|
|
#include <wayland-client.h>
|
|
#endif // XR_USE_PLATFORM_WAYLAND
|
|
|
|
#if defined(XR_USE_PLATFORM_XLIB) || defined(XR_USE_PLATFORM_XCB)
|
|
#ifdef Success
|
|
#undef Success
|
|
#endif // Success
|
|
|
|
#ifdef Always
|
|
#undef Always
|
|
#endif // Always
|
|
|
|
#ifdef None
|
|
#undef None
|
|
#endif // None
|
|
#endif // defined(XR_USE_PLATFORM_XLIB) || defined(XR_USE_PLATFORM_XCB)
|
|
|
|
#ifdef XR_USE_TIMESPEC
|
|
#include <time.h>
|
|
#endif // XR_USE_TIMESPEC
|