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 VkTestUtils_DEFINED
9 #define VkTestUtils_DEFINED
10 
11 #include "SkTypes.h"
12 
13 #ifdef SK_VULKAN
14 
15 #include "vk/GrVkDefines.h"
16 
17 namespace sk_gpu_test {
18     bool LoadVkLibraryAndGetProcAddrFuncs(PFN_vkGetInstanceProcAddr*, PFN_vkGetDeviceProcAddr*);
19 }
20 
21 #endif
22 #endif
23 
24