diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2015-06-16 14:00:19 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-18 10:22:57 -0600 |
| commit | f95323f72495b0dd50f942236a58a344eabc4d78 (patch) | |
| tree | d6ba10d16cb32123b5101027cb62d2171e52a409 /layers/param_checker.cpp | |
| parent | 925320abcb1d91d0a0364fec2294121895bbfc82 (diff) | |
| download | usermoji-f95323f72495b0dd50f942236a58a344eabc4d78.tar.xz | |
vulkan.h: V99 -- Remove vkPinSystemMemory, Bug# 13926
Diffstat (limited to 'layers/param_checker.cpp')
| -rw-r--r-- | layers/param_checker.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/layers/param_checker.cpp b/layers/param_checker.cpp index 5c92cb09..20608ede 100644 --- a/layers/param_checker.cpp +++ b/layers/param_checker.cpp @@ -465,13 +465,6 @@ VK_LAYER_EXPORT VkResult VKAPI vkInvalidateMappedMemoryRanges( return result; } -VK_LAYER_EXPORT VkResult VKAPI vkPinSystemMemory(VkDevice device, const void* pSysMem, size_t memSize, VkDeviceMemory* pMem) -{ - - VkResult result = device_dispatch_table(device)->PinSystemMemory(device, pSysMem, memSize, pMem); - return result; -} - VK_LAYER_EXPORT VkResult VKAPI vkGetMultiDeviceCompatibility(VkPhysicalDevice gpu0, VkPhysicalDevice gpu1, VkPhysicalDeviceCompatibilityInfo* pInfo) { @@ -1994,8 +1987,6 @@ static inline void* layer_intercept_proc(const char *name) return (void*) vkFlushMappedMemoryRanges; if (!strcmp(name, "InvalidateMappedMemoryRanges")) return (void*) vkInvalidateMappedMemoryRanges; - if (!strcmp(name, "PinSystemMemory")) - return (void*) vkPinSystemMemory; if (!strcmp(name, "OpenSharedMemory")) return (void*) vkOpenSharedMemory; if (!strcmp(name, "OpenSharedSemaphore")) |
