diff options
Diffstat (limited to 'include/SDL_config_android.h')
-rw-r--r-- | include/SDL_config_android.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/SDL_config_android.h b/include/SDL_config_android.h index edc394451..361bad8b7 100644 --- a/include/SDL_config_android.h +++ b/include/SDL_config_android.h @@ -140,12 +140,12 @@ #define SDL_VIDEO_RENDER_OGL_ES 1 #define SDL_VIDEO_RENDER_OGL_ES2 1 -/* Enable Vulkan surface support */ +/* Enable Vulkan support */ /* Android does not support Vulkan in native code using the "armeabi" ABI. */ -#if !defined(__ARM_EABI__) || defined(__ARM_ARCH_7A__) -#define SDL_VIDEO_VULKAN_SURFACE 1 +#if defined(__ARM_ARCH) && __ARM_ARCH < 7 +#define SDL_VIDEO_VULKAN 0 #else -#define SDL_VIDEO_VULKAN_SURFACE 0 +#define SDL_VIDEO_VULKAN 1 #endif /* Enable system power support */ |