vulkan: Add iOS window implementation
[platform/upstream/gst-plugins-bad.git] / ext / vulkan / vkapi.h
1 /*
2  * GStreamer
3  * Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef _VK_API_H_
22 #define _VK_API_H_
23
24 #define VK_PROTOTYPES
25
26 #include <vkconfig.h>
27 #include "vk_fwd.h"
28 #include "vkmacros.h"
29
30 /* Need these defined to have access to winsys functions before including vulkan.h */
31 #if GST_VULKAN_HAVE_WINDOW_XCB
32 #ifndef VK_USE_PLATFORM_XCB_KHR
33 #define VK_USE_PLATFORM_XCB_KHR
34 #endif
35 #endif
36
37 #if GST_VULKAN_HAVE_WINDOW_WAYLAND
38 #ifndef VK_USE_PLATFORM_WAYLAND_KHR
39 #define VK_USE_PLATFORM_WAYLAND_KHR
40 #endif
41 #endif
42
43 #if GST_VULKAN_HAVE_WINDOW_COCOA
44 #ifndef VK_USE_PLATFORM_MACOS_MVK
45 #define VK_USE_PLATFORM_MACOS_MVK
46 #endif
47 #endif
48
49 #if GST_VULKAN_HAVE_WINDOW_IOS
50 #ifndef VK_USE_PLATFORM_IOS_MVK
51 #define VK_USE_PLATFORM_IOS_MVK
52 #endif
53 #endif
54
55 #include <vulkan/vulkan.h>
56
57 #endif /* _VK_H_ */