diff options
| author | Tony Barbour <tony@LunarG.com> | 2015-04-16 19:23:13 -0600 |
|---|---|---|
| committer | Tony Barbour <tony@LunarG.com> | 2015-04-16 19:35:00 -0600 |
| commit | 834a93da196bd710efa2d3f481cded30ae22ddd5 (patch) | |
| tree | 405e9215a9890ad841b3ce82db2af65f8b8cd4de /layers | |
| parent | 3213c75fc5178de45c117a10f187a9279e546859 (diff) | |
| download | usermoji-834a93da196bd710efa2d3f481cded30ae22ddd5.tar.xz | |
Bug 13632 Header 84 Add VkFlushMappedMemory
Diffstat (limited to 'layers')
| -rw-r--r-- | layers/param_checker.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/layers/param_checker.cpp b/layers/param_checker.cpp index cfa0f30c..03533eae 100644 --- a/layers/param_checker.cpp +++ b/layers/param_checker.cpp @@ -404,6 +404,13 @@ VK_LAYER_EXPORT VkResult VKAPI vkUnmapMemory(VkDeviceMemory mem) return result; } +VK_LAYER_EXPORT VkResult VKAPI vkFlushMappedMemory(VkDeviceMemory mem, VkDeviceSize offset, VkDeviceSize size) +{ + + VkResult result = nextTable.FlushMappedMemory(mem, offset, size); + return result; +} + VK_LAYER_EXPORT VkResult VKAPI vkPinSystemMemory(VkDevice device, const void* pSysMem, size_t memSize, VkDeviceMemory* pMem) { |
