diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-08-12 23:39:30 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-08-12 23:39:30 +0200 |
commit | 554312a3b2aeb6d4080912064658d755991228d5 (patch) | |
tree | 31d149e02bc7b9ab0fd692ddd06fc2d22ceac69a /platform/android/detect.py | |
parent | a98589a4497bdff15c66a98b6d07241addddae2c (diff) |
Android: Use volk instead of NDK Vulkan headers
We no longer build the Vulkan loader, and volk lets us load it dynamically.
Roblox uses volk on Android so it should work well for us too.
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 9be6f33b93..7a993e9ca6 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -54,7 +54,6 @@ def get_android_ndk_root(): def get_flags(): return [ ("tools", False), - ("use_volk", False), ] |