aboutsummaryrefslogtreecommitdiff
path: root/layers/vk_layer_extension_utils.cpp
diff options
context:
space:
mode:
authorKarl Schultz <karl@lunarg.com>2016-11-03 12:31:41 -0600
committerKarl Schultz <karl@lunarg.com>2016-11-03 12:33:53 -0600
commit9c171370a66bf1a3ee2efd621617fb399b5ec095 (patch)
treea53f666f04b3b8054f6feadb585cd1c4f977274f /layers/vk_layer_extension_utils.cpp
parenteff14ac1726d29d14dadff23f33de260ff04138a (diff)
downloadusermoji-9c171370a66bf1a3ee2efd621617fb399b5ec095.tar.xz
layers: GH1115 Add missing VK_LAYER_EXPORT decorations
Functions in the vk_layer_extension_utils file were not getting exported correctly. Change-Id: If1bf6456cb8e79a1b6292ea76bd72e3e89a2b430
Diffstat (limited to 'layers/vk_layer_extension_utils.cpp')
-rw-r--r--layers/vk_layer_extension_utils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/layers/vk_layer_extension_utils.cpp b/layers/vk_layer_extension_utils.cpp
index bd778e9d..4c1e3963 100644
--- a/layers/vk_layer_extension_utils.cpp
+++ b/layers/vk_layer_extension_utils.cpp
@@ -27,8 +27,8 @@
* This file contains utility functions for layers
*/
-VkResult util_GetExtensionProperties(const uint32_t count, const VkExtensionProperties *layer_extensions, uint32_t *pCount,
- VkExtensionProperties *pProperties) {
+VK_LAYER_EXPORT VkResult util_GetExtensionProperties(const uint32_t count, const VkExtensionProperties *layer_extensions,
+ uint32_t *pCount, VkExtensionProperties *pProperties) {
uint32_t copy_size;
if (pProperties == NULL || layer_extensions == NULL) {
@@ -46,8 +46,8 @@ VkResult util_GetExtensionProperties(const uint32_t count, const VkExtensionProp
return VK_SUCCESS;
}
-VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount,
- VkLayerProperties *pProperties) {
+VK_LAYER_EXPORT VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount,
+ VkLayerProperties *pProperties) {
uint32_t copy_size;
if (pProperties == NULL || layer_properties == NULL) {