vk/vulkan.h: Constify the pFences parameter to ResetFences

This commit is contained in:
Jason Ekstrand
2015-07-07 17:18:00 -07:00
parent 6aa1b89457
commit d5349b1b18
2 changed files with 3 additions and 3 deletions

View File

@@ -1295,7 +1295,7 @@ VkResult anv_CreateFence(
VkResult anv_ResetFences(
VkDevice _device,
uint32_t fenceCount,
VkFence* pFences)
const VkFence* pFences)
{
struct anv_fence **fences = (struct anv_fence **) pFences;