aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtneygo@google.com>2016-02-08 11:16:21 -0700
committerJon Ashburn <jon@lunarg.com>2016-02-18 14:49:36 -0700
commitff0f00213f973bb000aadd671898b0f9d356d4df (patch)
tree645d780958c5a7c71b5443fe5b6026d10d06f3fb /vulkan.py
parent5170a4c0028632ebb3fa197c22970aed9215f817 (diff)
downloadusermoji-ff0f00213f973bb000aadd671898b0f9d356d4df.tar.xz
layers: MR221: Correct name for unique_objects layer
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/vulkan.py b/vulkan.py
index 77fdffb2..189be419 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -1203,10 +1203,7 @@ import sys
if sys.platform.startswith('win32'):
extensions = [core, ext_khr_surface, ext_khr_device_swapchain, ext_khr_win32_surface]
extensions_all = [core, ext_khr_surface, ext_khr_device_swapchain, ext_khr_win32_surface, lunarg_debug_report, lunarg_debug_marker]
-elif sys.platform.startswith('linux'):
- extensions = [core, ext_khr_surface, ext_khr_device_swapchain, ext_khr_xcb_surface]
- extensions_all = [core, ext_khr_surface, ext_khr_device_swapchain, ext_khr_xcb_surface, lunarg_debug_report, lunarg_debug_marker]
-else: # android
+else: # linux & android
extensions = [core, ext_khr_surface, ext_khr_device_swapchain, ext_khr_xcb_surface, ext_khr_android_surface]
extensions_all = [core, ext_khr_surface, ext_khr_device_swapchain, ext_khr_xcb_surface, ext_khr_android_surface, lunarg_debug_report, lunarg_debug_marker]