| Mark Lobodzinski | 288e4f7 | 2016-02-02 15:55:36 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2015-2016 The Khronos Group Inc. | 
|  | 2 | * Copyright (c) 2015-2016 Valve Corporation | 
|  | 3 | * Copyright (c) 2015-2016 LunarG, Inc. | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 4 | * | 
| Mark Lobodzinski | 288e4f7 | 2016-02-02 15:55:36 -0700 | [diff] [blame] | 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy | 
|  | 6 | * of this software and/or associated documentation files (the "Materials"), to | 
|  | 7 | * deal in the Materials without restriction, including without limitation the | 
|  | 8 | * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | 
|  | 9 | * sell copies of the Materials, and to permit persons to whom the Materials | 
|  | 10 | * are furnished to do so, subject to the following conditions: | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 11 | * | 
| Mark Lobodzinski | 288e4f7 | 2016-02-02 15:55:36 -0700 | [diff] [blame] | 12 | * The above copyright notice(s) and this permission notice shall be included | 
|  | 13 | * in all copies or substantial portions of the Materials. | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 14 | * | 
| Mark Lobodzinski | 288e4f7 | 2016-02-02 15:55:36 -0700 | [diff] [blame] | 15 | * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
| Mark Lobodzinski | 288e4f7 | 2016-02-02 15:55:36 -0700 | [diff] [blame] | 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | 
|  | 18 | * | 
|  | 19 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | 
|  | 20 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | 
|  | 21 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE | 
|  | 22 | * USE OR OTHER DEALINGS IN THE MATERIALS | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 23 | * | 
| Courtney Goeltzenleuchter | 96cd795 | 2015-10-30 11:14:30 -0600 | [diff] [blame] | 24 | * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> | 
|  | 25 | * | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 26 | */ | 
|  | 27 |  | 
| David Pinedo | 329ca9e | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 28 | #include "vulkan/vk_layer.h" | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 29 |  | 
|  | 30 | #ifndef LAYER_EXTENSION_UTILS_H | 
|  | 31 | #define LAYER_EXTENSION_UTILS_H | 
|  | 32 |  | 
| Courtney Goeltzenleuchter | fc11748 | 2015-07-06 22:29:41 -0600 | [diff] [blame] | 33 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) | 
|  | 34 |  | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 35 | /* | 
|  | 36 | * This file contains static functions for the generated layers | 
|  | 37 | */ | 
|  | 38 | extern "C" { | 
|  | 39 |  | 
| Jon Ashburn | 491a3cd | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 40 | VkResult util_GetExtensionProperties(const uint32_t count, const VkExtensionProperties *layer_extensions, uint32_t *pCount, | 
|  | 41 | VkExtensionProperties *pProperties); | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 42 |  | 
| Jon Ashburn | 491a3cd | 2016-03-08 17:48:44 -0700 | [diff] [blame] | 43 | VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount, | 
|  | 44 | VkLayerProperties *pProperties); | 
| Courtney Goeltzenleuchter | 18061cd | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 45 |  | 
|  | 46 | } // extern "C" | 
|  | 47 | #endif // LAYER_EXTENSION_UTILS_H |