diff options
| author | Jon Ashburn <jon@lunarg.com> | 2015-06-16 12:44:51 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-18 10:22:58 -0600 |
| commit | d7130cb41fef9c36c41c8d3a3f60ae4b0b7484b6 (patch) | |
| tree | 7d8ce1fe2bd643d347da1010da3c4ad4cfe185d6 /layers | |
| parent | e35b0a6c77018bd5b6df570e48bb6ae97cb6c003 (diff) | |
| download | usermoji-d7130cb41fef9c36c41c8d3a3f60ae4b0b7484b6.tar.xz | |
misc: Remove GetDisplayInfoWSI()
This entry point was a challenge for loader to handle correctly. Since it is
going away in the new WSI proposal remove it in all components.
Diffstat (limited to 'layers')
| -rw-r--r-- | layers/param_checker.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/layers/param_checker.cpp b/layers/param_checker.cpp index eeea84b0..670b31f1 100644 --- a/layers/param_checker.cpp +++ b/layers/param_checker.cpp @@ -1923,12 +1923,6 @@ VkResult VKAPI vkDbgSetObjectName(VkDevice device, VkObjectType objType, VkObje debug_marker_dispatch_table(device)->DbgSetObjectName(device, objType, object, nameSize, pName); } -VK_LAYER_EXPORT VkResult VKAPI vkGetDisplayInfoWSI(VkDisplayWSI display, VkDisplayInfoTypeWSI infoType, size_t* pDataSize, void* pData) -{ - VkResult result = instance_dispatch_table(display)->GetDisplayInfoWSI(display, infoType, pDataSize, pData); - return result; -} - VK_LAYER_EXPORT VkResult VKAPI vkCreateSwapChainWSI(VkDevice device, const VkSwapChainCreateInfoWSI* pCreateInfo, VkSwapChainWSI* pSwapChain) { VkResult result = device_dispatch_table(device)->CreateSwapChainWSI(device, pCreateInfo, pSwapChain); @@ -2151,8 +2145,6 @@ static inline void* layer_intercept_proc(const char *name) return (void*) vkCmdBeginRenderPass; if (!strcmp(name, "CmdEndRenderPass")) return (void*) vkCmdEndRenderPass; - if (!strcmp(name, "GetDisplayInfoWSI")) - return (void*) vkGetDisplayInfoWSI; if (!strcmp(name, "CreateSwapChainWSI")) return (void*) vkCreateSwapChainWSI; if (!strcmp(name, "DestroySwapChainWSI")) |
