diff options
| author | Cody Northrop <cnorthrop@google.com> | 2016-09-22 14:39:16 -0600 |
|---|---|---|
| committer | Cody Northrop <cnorthrop@google.com> | 2016-09-23 08:45:14 -0600 |
| commit | b01b70a8b7e3e5420e2822e6f9115b0c0f5eccdc (patch) | |
| tree | 4c953463eadaea843007daf73c5aad985467dded /include/vulkan | |
| parent | bc2731bac572aaf1ff4b760df83f5f01df21a96c (diff) | |
| download | usermoji-b01b70a8b7e3e5420e2822e6f9115b0c0f5eccdc.tar.xz | |
android: Add Android and C++ support to a couple files
These are needed downstream in VulkanTools for Android support.
Diffstat (limited to 'include/vulkan')
| -rw-r--r-- | include/vulkan/vk_icd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/vulkan/vk_icd.h b/include/vulkan/vk_icd.h index c26d1f74..7b54fb57 100644 --- a/include/vulkan/vk_icd.h +++ b/include/vulkan/vk_icd.h @@ -111,6 +111,12 @@ typedef struct { } VkIcdSurfaceXlib; #endif // VK_USE_PLATFORM_XLIB_KHR +#ifdef VK_USE_PLATFORM_ANDROID_KHR +typedef struct { + ANativeWindow* window; +} VkIcdSurfaceAndroid; +#endif //VK_USE_PLATFORM_ANDROID_KHR + typedef struct { VkIcdSurfaceBase base; VkDisplayModeKHR displayMode; |
