aboutsummaryrefslogtreecommitdiff
path: root/layers/param_checker.cpp
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-18 17:28:20 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-24 15:46:01 -0600
commita5fa53b8675cffc5d07450e6c8202f9821309385 (patch)
tree690f261c9e0935fedf4d9506f29efe283adcd208 /layers/param_checker.cpp
parent9795a5629af84affc39cee421ecd35877948d91f (diff)
downloadusermoji-a5fa53b8675cffc5d07450e6c8202f9821309385.tar.xz
bug 14016: Make vkResetFences take const pFences
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14016
Diffstat (limited to 'layers/param_checker.cpp')
-rw-r--r--layers/param_checker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/param_checker.cpp b/layers/param_checker.cpp
index 822cb42d..0bed8691 100644
--- a/layers/param_checker.cpp
+++ b/layers/param_checker.cpp
@@ -550,7 +550,7 @@ VK_LAYER_EXPORT VkResult VKAPI vkWaitForFences(VkDevice device, uint32_t fenceCo
return result;
}
-VK_LAYER_EXPORT VkResult VKAPI vkResetFences(VkDevice device, uint32_t fenceCount, VkFence* pFences)
+VK_LAYER_EXPORT VkResult VKAPI vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences)
{
VkResult result = device_dispatch_table(device)->ResetFences(device, fenceCount, pFences);