aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/vulkan/Skia_Vulkan_Android.h
blob: 65ff4aa5825c8a0098966f2484d48274be314033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef Skia_Vulkan_Android_DEFINED
#define Skia_Vulkan_Android_DEFINED

#include "SkTypes.h"

#if !defined(SK_BUILD_FOR_ANDROID)
#error "Must be building for android to use this header"
#endif
#if !defined(VK_USE_PLATFORM_ANDROID_KHR)
#  define VK_USE_PLATFORM_ANDROID_KHR
#endif

#include <vulkan/vulkan.h> // IWYU pragma: export

#endif