android: Add Android and C++ support to a couple files

These are needed downstream in VulkanTools for Android support.
This commit is contained in:
Cody Northrop 2016-09-22 14:39:16 -06:00 committed by Mark Lobodzinski
parent 04f11cd232
commit 8e34d8d84e

View file

@ -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;