aboutsummaryrefslogtreecommitdiff
path: root/layers/param_checker.cpp
diff options
context:
space:
mode:
authorTony Barbour <tony@LunarG.com>2015-04-16 19:23:13 -0600
committerTony Barbour <tony@LunarG.com>2015-04-16 19:35:00 -0600
commit834a93da196bd710efa2d3f481cded30ae22ddd5 (patch)
tree405e9215a9890ad841b3ce82db2af65f8b8cd4de /layers/param_checker.cpp
parent3213c75fc5178de45c117a10f187a9279e546859 (diff)
downloadusermoji-834a93da196bd710efa2d3f481cded30ae22ddd5.tar.xz
Bug 13632 Header 84 Add VkFlushMappedMemory
Diffstat (limited to 'layers/param_checker.cpp')
-rw-r--r--layers/param_checker.cpp7
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)
{