diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2016-02-08 11:16:21 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2016-02-18 14:49:36 -0700 |
| commit | ff0f00213f973bb000aadd671898b0f9d356d4df (patch) | |
| tree | 645d780958c5a7c71b5443fe5b6026d10d06f3fb /vulkan.py | |
| parent | 5170a4c0028632ebb3fa197c22970aed9215f817 (diff) | |
| download | usermoji-ff0f00213f973bb000aadd671898b0f9d356d4df.tar.xz | |
layers: MR221: Correct name for unique_objects layer
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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] |
