From 3213c75fc5178de45c117a10f187a9279e546859 Mon Sep 17 00:00:00 2001 From: Tony Barbour Date: Thu, 16 Apr 2015 19:09:28 -0600 Subject: Bug 13632 Header 84 Add offset and size to VkMapMemory --- layers/param_checker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layers/param_checker.cpp') diff --git a/layers/param_checker.cpp b/layers/param_checker.cpp index da933826..cfa0f30c 100644 --- a/layers/param_checker.cpp +++ b/layers/param_checker.cpp @@ -390,10 +390,10 @@ VK_LAYER_EXPORT VkResult VKAPI vkSetMemoryPriority(VkDeviceMemory mem, VkMemoryP return result; } -VK_LAYER_EXPORT VkResult VKAPI vkMapMemory(VkDeviceMemory mem, VkFlags flags, void** ppData) +VK_LAYER_EXPORT VkResult VKAPI vkMapMemory(VkDeviceMemory mem, VkDeviceSize offset, VkDeviceSize size, VkFlags flags, void** ppData) { - VkResult result = nextTable.MapMemory(mem, flags, ppData); + VkResult result = nextTable.MapMemory(mem, offset, size, flags, ppData); return result; } -- cgit v1.2.3