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 /loader/table_ops.h | |
| 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 'loader/table_ops.h')
| -rw-r--r-- | loader/table_ops.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/loader/table_ops.h b/loader/table_ops.h index a2c67c30..45f411ed 100644 --- a/loader/table_ops.h +++ b/loader/table_ops.h @@ -376,7 +376,6 @@ static inline void loader_init_instance_core_dispatch_table(VkLayerInstanceDispa table->CreateDevice = (PFN_vkCreateDevice) gpa(inst, "vkCreateDevice"); table->GetPhysicalDeviceExtensionInfo = (PFN_vkGetPhysicalDeviceExtensionInfo) gpa(inst, "vkGetPhysicalDeviceExtensionInfo"); table->GetMultiDeviceCompatibility = (PFN_vkGetMultiDeviceCompatibility) gpa(inst, "vkGetMultiDeviceCompatibility"); - table->GetDisplayInfoWSI = (PFN_vkGetDisplayInfoWSI) gpa(inst, "vkGetDisplayInfoWSI"); } static inline void loader_init_instance_extension_dispatch_table( @@ -412,8 +411,6 @@ static inline void *loader_lookup_instance_dispatch_table( return (void *) table->GetPhysicalDeviceExtensionInfo; if (!strcmp(name, "GetMultiDeviceCompatibility")) return (void *) table->GetMultiDeviceCompatibility; - if (!strcmp(name, "GetDisplayInfoWSI")) - return (void *) table->GetDisplayInfoWSI; if (!strcmp(name, "DbgCreateMsgCallback")) return (void *) table->DbgCreateMsgCallback; if (!strcmp(name, "DbgDestroyMsgCallback")) |
