aboutsummaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
authorJon Ashburn <jon@lunarg.com>2015-06-08 14:38:28 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-18 10:22:55 -0600
commitfc3b08cd1673c15ec5742d31356e1cd941c01e08 (patch)
tree2062a53bcd3010d7194d38997f911498293882dc /loader
parent5da7f62f086626163c9e861fa044d8257f9eda4f (diff)
downloadusermoji-fc3b08cd1673c15ec5742d31356e1cd941c01e08.tar.xz
loader: Remove GetGlobalExtensionInfo from dispatch table
No way to reliably dispatch this entry point in layers; will not be recursive. Conflicts: loader/loader.c
Diffstat (limited to 'loader')
-rw-r--r--loader/loader.c1
-rw-r--r--loader/table_ops.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/loader/loader.c b/loader/loader.c
index bedf27d9..315b8580 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -89,7 +89,6 @@ const VkLayerInstanceDispatchTable instance_disp = {
.EnumeratePhysicalDevices = loader_EnumeratePhysicalDevices,
.GetPhysicalDeviceInfo = loader_GetPhysicalDeviceInfo,
.CreateDevice = loader_CreateDevice,
- .GetGlobalExtensionInfo = vkGetGlobalExtensionInfo,
.GetPhysicalDeviceExtensionInfo = loader_GetPhysicalDeviceExtensionInfo,
.GetMultiDeviceCompatibility = loader_GetMultiDeviceCompatibility,
.GetDisplayInfoWSI = loader_GetDisplayInfoWSI,
diff --git a/loader/table_ops.h b/loader/table_ops.h
index e4c39f2e..15a30070 100644
--- a/loader/table_ops.h
+++ b/loader/table_ops.h
@@ -383,7 +383,6 @@ static inline void loader_init_instance_core_dispatch_table(VkLayerInstanceDispa
table->EnumeratePhysicalDevices = (PFN_vkEnumeratePhysicalDevices) gpa(inst, "vkEnumeratePhysicalDevices");
table->GetPhysicalDeviceInfo = (PFN_vkGetPhysicalDeviceInfo) gpa(inst, "vkGetPhysicalDeviceInfo");
table->CreateDevice = (PFN_vkCreateDevice) gpa(inst, "vkCreateDevice");
- table->GetGlobalExtensionInfo = (PFN_vkGetGlobalExtensionInfo) gpa(inst,"vkGetGlobalExtensionInfo");
table->GetPhysicalDeviceExtensionInfo = (PFN_vkGetPhysicalDeviceExtensionInfo) gpa(inst, "vkGetPhysicalDeviceExtensionInfo");
table->GetMultiDeviceCompatibility = (PFN_vkGetMultiDeviceCompatibility) gpa(inst, "vkGetMultiDeviceCompatibility");
table->GetDisplayInfoWSI = (PFN_vkGetDisplayInfoWSI) gpa(inst, "vkGetDisplayInfoWSI");
@@ -418,8 +417,6 @@ static inline void *loader_lookup_instance_dispatch_table(
return (void *) table->GetInstanceProcAddr;
if (!strcmp(name, "CreateDevice"))
return (void *) table->CreateDevice;
- if (!strcmp(name, "GetGlobalExtensionInfo"))
- return (void *) table->GetGlobalExtensionInfo;
if (!strcmp(name, "GetPhysicalDeviceExtensionInfo"))
return (void *) table->GetPhysicalDeviceExtensionInfo;
if (!strcmp(name, "GetMultiDeviceCompatibility"))