diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-18 17:28:20 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-24 15:46:01 -0600 |
| commit | a5fa53b8675cffc5d07450e6c8202f9821309385 (patch) | |
| tree | 690f261c9e0935fedf4d9506f29efe283adcd208 /layers/param_checker.cpp | |
| parent | 9795a5629af84affc39cee421ecd35877948d91f (diff) | |
| download | usermoji-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.cpp | 2 |
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); |
