Skip to content

Latest commit

 

History

History
77 lines (57 loc) · 1.54 KB

vulkan.h

File metadata and controls

77 lines (57 loc) · 1.54 KB
 
1
2
3
4
#ifndef VULKAN_H_
#define VULKAN_H_ 1
/*
Nov 7, 2018
Nov 7, 2018
5
** Copyright (c) 2015-2018 The Khronos Group Inc.
6
7
8
9
10
11
12
13
14
15
16
17
18
19
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
Nov 7, 2018
Nov 7, 2018
20
21
#include "vk_platform.h"
#include "vulkan_core.h"
Nov 7, 2018
Nov 7, 2018
23
24
#ifdef VK_USE_PLATFORM_ANDROID_KHR
#include "vulkan_android.h"
Nov 7, 2018
Nov 7, 2018
27
28
29
30
#ifdef VK_USE_PLATFORM_FUCHSIA
#include <zircon/types.h>
#include "vulkan_fuchsia.h"
#endif
Nov 7, 2018
Nov 7, 2018
32
33
34
#ifdef VK_USE_PLATFORM_IOS_MVK
#include "vulkan_ios.h"
#endif
Nov 7, 2018
Nov 7, 2018
37
38
39
#ifdef VK_USE_PLATFORM_MACOS_MVK
#include "vulkan_macos.h"
#endif
Nov 7, 2018
Nov 7, 2018
42
43
44
#ifdef VK_USE_PLATFORM_VI_NN
#include "vulkan_vi.h"
#endif
Nov 7, 2018
Nov 7, 2018
47
48
49
50
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
#include <wayland-client.h>
#include "vulkan_wayland.h"
#endif
Nov 7, 2018
Nov 7, 2018
53
54
55
56
#ifdef VK_USE_PLATFORM_WIN32_KHR
#include <windows.h>
#include "vulkan_win32.h"
#endif
Nov 7, 2018
Nov 7, 2018
59
60
61
62
#ifdef VK_USE_PLATFORM_XCB_KHR
#include <xcb/xcb.h>
#include "vulkan_xcb.h"
#endif
Nov 7, 2018
Nov 7, 2018
65
66
67
68
#ifdef VK_USE_PLATFORM_XLIB_KHR
#include <X11/Xlib.h>
#include "vulkan_xlib.h"
#endif
Nov 7, 2018
Nov 7, 2018
71
72
73
74
75
#ifdef VK_USE_PLATFORM_XLIB_XRANDR_EXT
#include <X11/Xlib.h>
#include <X11/extensions/Xrandr.h>
#include "vulkan_xlib_xrandr.h"
#endif
Nov 7, 2018
Nov 7, 2018
77
#endif // VULKAN_H_