d90cd3b279
This reverts commit edf8449d2c
.
Change-Id: Ibeedd9965855b3ccfe44486d15307bf3da15fd9c
Reviewed-on: https://skia-review.googlesource.com/129516
Reviewed-by: Ben Wagner <bungeman@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
26 lines
488 B
C
26 lines
488 B
C
/*
|
|
* 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
|
|
|
|
|
|
|