1 /* 2 * Copyright 2017 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #ifndef Skia_Vulkan_Android_DEFINED 9 #define Skia_Vulkan_Android_DEFINED 10 11 #if !defined(SK_BUILD_FOR_ANDROID) 12 #error "Must be building for android to use this header" 13 #endif 14 #if !defined(VK_USE_PLATFORM_ANDROID_KHR) 15 # define VK_USE_PLATFORM_ANDROID_KHR 16 #endif 17 18 #include <vulkan/vulkan.h> 19 20 #endif 21 22 23 24