aboutsummaryrefslogtreecommitdiff
path: root/include/vulkan
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2016-08-29 09:16:59 -0600
committerMark Lobodzinski <mark@lunarg.com>2016-08-31 13:27:14 -0600
commit8779c60cb4e021762a6ac4f74f27e989a531382d (patch)
treeb57de7c1c7a3abd77c5459c9741f3108f45b7827 /include/vulkan
parente4461740e4129641bf3fa77a1ceb00447ee3eb18 (diff)
downloadusermoji-8779c60cb4e021762a6ac4f74f27e989a531382d.tar.xz
header: Move vk_platform.h to version 1.0.25
Change-Id: I71d8609bbd75af5832923c94e0fee9f1b2b0fcac
Diffstat (limited to 'include/vulkan')
-rw-r--r--include/vulkan/vk_platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vulkan/vk_platform.h b/include/vulkan/vk_platform.h
index c2232ec8..e51851a4 100644
--- a/include/vulkan/vk_platform.h
+++ b/include/vulkan/vk_platform.h
@@ -53,7 +53,7 @@ extern "C"
#define VKAPI_PTR VKAPI_CALL
#elif defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH < 7
#error "Vulkan isn't supported for the 'armeabi' NDK ABI"
-#elif defined(__ANDROID__) && __ARM_ARCH >= 7 && __ARM_32BIT_STATE
+#elif defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7 && __ARM_32BIT_STATE
// On Android 32-bit ARM targets, Vulkan functions use the "hardfloat"
// calling convention, i.e. float parameters are passed in registers. This
// is true even if the rest of the application passes floats on the stack,