aboutsummaryrefslogtreecommitdiff
path: root/loader/table_ops.h
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-18 17:01:41 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-24 15:38:03 -0600
commit52b161e51097b2e0322b130b85ca94336f56733a (patch)
tree90edd35f28df89476471f8de33b8396875f7db4e /loader/table_ops.h
parent4df211371fd90075d964792cb7ba3056433874cf (diff)
downloadusermoji-52b161e51097b2e0322b130b85ca94336f56733a.tar.xz
bug 13038: Remove support for multiple GPUs
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=13038
Diffstat (limited to 'loader/table_ops.h')
-rw-r--r--loader/table_ops.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/loader/table_ops.h b/loader/table_ops.h
index 45f411ed..360406a2 100644
--- a/loader/table_ops.h
+++ b/loader/table_ops.h
@@ -48,10 +48,6 @@ static inline void loader_init_device_dispatch_table(VkLayerDispatchTable *table
table->UnmapMemory = (PFN_vkUnmapMemory) gpa(dev, "vkUnmapMemory");
table->FlushMappedMemoryRanges = (PFN_vkFlushMappedMemoryRanges) gpa(dev, "vkFlushMappedMemoryRanges");
table->InvalidateMappedMemoryRanges = (PFN_vkInvalidateMappedMemoryRanges) gpa(dev, "vkInvalidateMappedMemoryRanges");
- table->OpenSharedMemory = (PFN_vkOpenSharedMemory) gpa(dev, "vkOpenSharedMemory");
- table->OpenSharedSemaphore = (PFN_vkOpenSharedSemaphore) gpa(dev, "vkOpenSharedSemaphore");
- table->OpenPeerMemory = (PFN_vkOpenPeerMemory) gpa(dev, "vkOpenPeerMemory");
- table->OpenPeerImage = (PFN_vkOpenPeerImage) gpa(dev, "vkOpenPeerImage");
table->DestroyObject = (PFN_vkDestroyObject) gpa(dev, "vkDestroyObject");
table->GetObjectInfo = (PFN_vkGetObjectInfo) gpa(dev, "vkGetObjectInfo");
table->BindObjectMemory = (PFN_vkBindObjectMemory) gpa(dev, "vkBindObjectMemory");
@@ -178,14 +174,6 @@ static inline void *loader_lookup_device_dispatch_table(
return (void *) table->FlushMappedMemoryRanges;
if (!strcmp(name, "InvalidateMappedMemoryRanges"))
return (void *) table->InvalidateMappedMemoryRanges;
- if (!strcmp(name, "OpenSharedMemory"))
- return (void *) table->OpenSharedMemory;
- if (!strcmp(name, "OpenSharedSemaphore"))
- return (void *) table->OpenSharedSemaphore;
- if (!strcmp(name, "OpenPeerMemory"))
- return (void *) table->OpenPeerMemory;
- if (!strcmp(name, "OpenPeerImage"))
- return (void *) table->OpenPeerImage;
if (!strcmp(name, "DestroyObject"))
return (void *) table->DestroyObject;
if (!strcmp(name, "GetObjectInfo"))
@@ -375,7 +363,6 @@ static inline void loader_init_instance_core_dispatch_table(VkLayerInstanceDispa
table->GetPhysicalDeviceInfo = (PFN_vkGetPhysicalDeviceInfo) gpa(inst, "vkGetPhysicalDeviceInfo");
table->CreateDevice = (PFN_vkCreateDevice) gpa(inst, "vkCreateDevice");
table->GetPhysicalDeviceExtensionInfo = (PFN_vkGetPhysicalDeviceExtensionInfo) gpa(inst, "vkGetPhysicalDeviceExtensionInfo");
- table->GetMultiDeviceCompatibility = (PFN_vkGetMultiDeviceCompatibility) gpa(inst, "vkGetMultiDeviceCompatibility");
}
static inline void loader_init_instance_extension_dispatch_table(
@@ -409,8 +396,6 @@ static inline void *loader_lookup_instance_dispatch_table(
return (void *) table->CreateDevice;
if (!strcmp(name, "GetPhysicalDeviceExtensionInfo"))
return (void *) table->GetPhysicalDeviceExtensionInfo;
- if (!strcmp(name, "GetMultiDeviceCompatibility"))
- return (void *) table->GetMultiDeviceCompatibility;
if (!strcmp(name, "DbgCreateMsgCallback"))
return (void *) table->DbgCreateMsgCallback;
if (!strcmp(name, "DbgDestroyMsgCallback"))