diff options
| author | Tony Barbour <tony@LunarG.com> | 2015-04-16 19:09:28 -0600 |
|---|---|---|
| committer | Tony Barbour <tony@LunarG.com> | 2015-04-16 19:35:00 -0600 |
| commit | 3213c75fc5178de45c117a10f187a9279e546859 (patch) | |
| tree | 8f71f3755cdea82c8187178877df090afc587a7e /layers/param_checker.cpp | |
| parent | 6521e9e251c4271db4b2012040b35e9abaa8ca80 (diff) | |
| download | usermoji-3213c75fc5178de45c117a10f187a9279e546859.tar.xz | |
Bug 13632 Header 84 Add offset and size to VkMapMemory
Diffstat (limited to 'layers/param_checker.cpp')
| -rw-r--r-- | layers/param_checker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |
