aboutsummaryrefslogtreecommitdiff
path: root/loader/table_ops.h
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtneygo@google.com>2015-12-09 15:48:16 -0700
committerJon Ashburn <jon@lunarg.com>2015-12-17 11:26:03 -0700
commit0f060df145d1a612dfa4c07c16d3aeada75d46f3 (patch)
treed795d9a412dfcdcf92e7184385b9a10d6c8dd068 /loader/table_ops.h
parentb1c118f19f066052cc5e53ed6770777e01dd1aab (diff)
downloadusermoji-0f060df145d1a612dfa4c07c16d3aeada75d46f3.tar.xz
debug_report: rename object type and error bits
Conflicts: demos/tri.c layers/device_limits.cpp layers/draw_state.cpp layers/image.cpp layers/mem_tracker.cpp layers/param_checker.cpp layers/vk_layer_logging.h loader/debug_report.c tests/layer_validation_tests.cpp
Diffstat (limited to 'loader/table_ops.h')
-rw-r--r--loader/table_ops.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/loader/table_ops.h b/loader/table_ops.h
index 50354960..1577409c 100644
--- a/loader/table_ops.h
+++ b/loader/table_ops.h
@@ -469,9 +469,9 @@ static inline void loader_init_instance_extension_dispatch_table(
VkInstance inst)
{
table->DestroySurfaceKHR = (PFN_vkDestroySurfaceKHR) gpa(inst, "vkDestroySurfaceKHR");
- table->CreateDebugReportCallbackLUNARG = (PFN_vkCreateDebugReportCallbackLUNARG) gpa(inst, "vkCreateDebugReportCallbackLUNARG");
- table->DestroyDebugReportCallbackLUNARG = (PFN_vkDestroyDebugReportCallbackLUNARG) gpa(inst, "vkDestroyDebugReportCallbackLUNARG");
- table->DebugReportMessageLUNARG = (PFN_vkDebugReportMessageLUNARG) gpa(inst, "vkDebugReportMessageLUNARG");
+ table->CreateDebugReportCallbackEXT = (PFN_vkCreateDebugReportCallbackEXT) gpa(inst, "vkCreateDebugReportCallbackEXT");
+ table->DestroyDebugReportCallbackEXT = (PFN_vkDestroyDebugReportCallbackEXT) gpa(inst, "vkDestroyDebugReportCallbackEXT");
+ table->DebugReportMessageEXT = (PFN_vkDebugReportMessageEXT) gpa(inst, "vkDebugReportMessageEXT");
table->GetPhysicalDeviceSurfaceSupportKHR = (PFN_vkGetPhysicalDeviceSurfaceSupportKHR) gpa(inst, "vkGetPhysicalDeviceSurfaceSupportKHR");
table->GetPhysicalDeviceSurfaceCapabilitiesKHR = (PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR) gpa(inst, "vkGetPhysicalDeviceSurfaceCapabilitiesKHR");
table->GetPhysicalDeviceSurfaceFormatsKHR = (PFN_vkGetPhysicalDeviceSurfaceFormatsKHR) gpa(inst, "vkGetPhysicalDeviceSurfaceFormatsKHR");
@@ -572,12 +572,12 @@ static inline void *loader_lookup_instance_dispatch_table(
if (!strcmp(name, "GetPhysicalDeviceXlibPresentationSupportKHR"))
return (void *) table->GetPhysicalDeviceXlibPresentationSupportKHR;
#endif
- if (!strcmp(name, "CreateDebugReportCallbackLUNARG"))
- return (void *) table->CreateDebugReportCallbackLUNARG;
- if (!strcmp(name, "DestroyDebugReportCallbackLUNARG"))
- return (void *) table->DestroyDebugReportCallbackLUNARG;
- if (!strcmp(name, "DebugReportMessageLUNARG"))
- return (void *) table->DebugReportMessageLUNARG;
+ if (!strcmp(name, "CreateDebugReportCallbackEXT"))
+ return (void *) table->CreateDebugReportCallbackEXT;
+ if (!strcmp(name, "DestroyDebugReportCallbackEXT"))
+ return (void *) table->DestroyDebugReportCallbackEXT;
+ if (!strcmp(name, "DebugReportMessageEXT"))
+ return (void *) table->DebugReportMessageEXT;
return NULL;
}