42 #define VKAPI_CALL __stdcall
43 #define VKAPI_PTR VKAPI_CALL
44#elif defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH < 7
45 #error "Vulkan is not supported for the 'armeabi' NDK ABI"
46#elif defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7 && defined(__ARM_32BIT_STATE)
51 #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp")))
53 #define VKAPI_PTR VKAPI_ATTR
61#if !defined(VK_NO_STDDEF_H)
65#if !defined(VK_NO_STDINT_H)
66 #if defined(_MSC_VER) && (_MSC_VER < 1600)
67 typedef signed __int8
int8_t;
68 typedef unsigned __int8
uint8_t;
71 typedef signed __int32 int32_t;
unsigned short uint16_t
Definition: wposix_types.h:52
unsigned int uint32_t
Definition: wposix_types.h:53
long long int64_t
Definition: wposix_types.h:48
short int16_t
Definition: wposix_types.h:38
unsigned long long uint64_t
Definition: wposix_types.h:57
unsigned char uint8_t
Definition: wposix_types.h:51
signed char int8_t
Definition: wposix_types.h:37