2016-03-22 16:06:53 -07:00
|
|
|
#ifndef VULKAN_H_
|
|
|
|
#define VULKAN_H_ 1
|
2015-07-06 14:30:31 -07:00
|
|
|
|
2015-05-08 22:32:37 -07:00
|
|
|
/*
|
2024-01-24 08:22:43 +01:00
|
|
|
** Copyright 2015-2024 The Khronos Group Inc.
|
2015-05-08 22:32:37 -07:00
|
|
|
**
|
2020-06-22 16:12:39 -05:00
|
|
|
** SPDX-License-Identifier: Apache-2.0
|
2015-05-08 22:32:37 -07:00
|
|
|
*/
|
|
|
|
|
2015-07-06 14:30:31 -07:00
|
|
|
#include "vk_platform.h"
|
2017-09-19 13:04:13 -07:00
|
|
|
#include "vulkan_core.h"
|
2015-05-08 22:32:37 -07:00
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
|
|
|
#include "vulkan_android.h"
|
2016-11-11 11:44:10 +10:00
|
|
|
#endif
|
2015-05-08 22:32:37 -07:00
|
|
|
|
2018-10-13 10:00:05 -05:00
|
|
|
#ifdef VK_USE_PLATFORM_FUCHSIA
|
|
|
|
#include <zircon/types.h>
|
|
|
|
#include "vulkan_fuchsia.h"
|
|
|
|
#endif
|
2015-11-30 16:42:12 -08:00
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_IOS_MVK
|
|
|
|
#include "vulkan_ios.h"
|
|
|
|
#endif
|
2015-05-08 22:32:37 -07:00
|
|
|
|
2015-07-14 17:06:11 -07:00
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_MACOS_MVK
|
|
|
|
#include "vulkan_macos.h"
|
|
|
|
#endif
|
2015-05-08 22:32:37 -07:00
|
|
|
|
2019-03-04 17:40:08 +00:00
|
|
|
#ifdef VK_USE_PLATFORM_METAL_EXT
|
|
|
|
#include "vulkan_metal.h"
|
|
|
|
#endif
|
2015-07-14 14:59:39 -07:00
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_VI_NN
|
|
|
|
#include "vulkan_vi.h"
|
|
|
|
#endif
|
2015-07-14 17:06:11 -07:00
|
|
|
|
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
|
|
|
#include "vulkan_wayland.h"
|
|
|
|
#endif
|
2015-05-08 22:32:37 -07:00
|
|
|
|
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
|
|
|
#include <windows.h>
|
|
|
|
#include "vulkan_win32.h"
|
|
|
|
#endif
|
2015-07-14 09:29:35 -07:00
|
|
|
|
2015-05-08 22:32:37 -07:00
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_XCB_KHR
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include "vulkan_xcb.h"
|
|
|
|
#endif
|
2015-05-08 22:32:37 -07:00
|
|
|
|
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include "vulkan_xlib.h"
|
|
|
|
#endif
|
2015-05-08 22:32:37 -07:00
|
|
|
|
2015-07-14 09:31:34 -07:00
|
|
|
|
2020-07-20 09:50:21 -05:00
|
|
|
#ifdef VK_USE_PLATFORM_DIRECTFB_EXT
|
|
|
|
#include <directfb.h>
|
|
|
|
#include "vulkan_directfb.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_XLIB_XRANDR_EXT
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/extensions/Xrandr.h>
|
|
|
|
#include "vulkan_xlib_xrandr.h"
|
|
|
|
#endif
|
2015-05-08 22:32:37 -07:00
|
|
|
|
2019-04-13 18:41:07 -05:00
|
|
|
|
|
|
|
#ifdef VK_USE_PLATFORM_GGP
|
|
|
|
#include <ggp_c/vulkan_types.h>
|
|
|
|
#include "vulkan_ggp.h"
|
|
|
|
#endif
|
|
|
|
|
2020-04-27 01:24:49 -05:00
|
|
|
|
2021-03-31 17:49:38 +03:00
|
|
|
#ifdef VK_USE_PLATFORM_SCREEN_QNX
|
|
|
|
#include <screen/screen.h>
|
|
|
|
#include "vulkan_screen.h"
|
|
|
|
#endif
|
|
|
|
|
2023-02-08 10:48:54 -06:00
|
|
|
|
|
|
|
#ifdef VK_USE_PLATFORM_SCI
|
|
|
|
#include <nvscisync.h>
|
|
|
|
#include <nvscibuf.h>
|
|
|
|
#include "vulkan_sci.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2020-04-27 01:24:49 -05:00
|
|
|
#ifdef VK_ENABLE_BETA_EXTENSIONS
|
|
|
|
#include "vulkan_beta.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-19 13:04:13 -07:00
|
|
|
#endif // VULKAN_H_
|