diff options
| author | Ian Elliott <ianelliott@google.com> | 2015-11-19 16:05:09 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-01 10:18:23 -0700 |
| commit | d17dd4b1ec0166f68ebb7c3955c1003136d688d3 (patch) | |
| tree | 666858ddec63349653148f9387b0c2965e1e18d2 /loader/table_ops.h | |
| parent | 36f1c4eed4a4d06b7fa5749b6b819924f58f01b2 (diff) | |
| download | usermoji-d17dd4b1ec0166f68ebb7c3955c1003136d688d3.tar.xz | |
loader: Add new vkGetPhysicalDeviceSurface*KHR() functions.
- vkGetPhysicalDeviceSurfaceCapabilitiesKHR()
- vkGetPhysicalDeviceSurfaceFormatsKHR()
- vkGetPhysicalDeviceSurfacePresentModesKHR()
Diffstat (limited to 'loader/table_ops.h')
| -rw-r--r-- | loader/table_ops.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/loader/table_ops.h b/loader/table_ops.h index 06b1acff..f3077817 100644 --- a/loader/table_ops.h +++ b/loader/table_ops.h @@ -507,6 +507,12 @@ static inline void *loader_lookup_instance_dispatch_table( return (void *) table->EnumerateDeviceLayerProperties; if (!strcmp(name, "GetPhysicalDeviceSurfaceSupportKHR")) return (void *) table->GetPhysicalDeviceSurfaceSupportKHR; + if (!strcmp(name, "GetPhysicalDeviceSurfaceCapabilitiesKHR")) + return (void *) table->GetPhysicalDeviceSurfaceCapabilitiesKHR; + if (!strcmp(name, "GetPhysicalDeviceSurfaceFormatsKHR")) + return (void *) table->GetPhysicalDeviceSurfaceFormatsKHR; + if (!strcmp(name, "GetPhysicalDeviceSurfacePresentModesKHR")) + return (void *) table->GetPhysicalDeviceSurfacePresentModesKHR; if (!strcmp(name, "DbgCreateMsgCallback")) return (void *) table->DbgCreateMsgCallback; if (!strcmp(name, "DbgDestroyMsgCallback")) |
