layers: Typo in CV function pointer lookup map
authorMike Schuchardt <mikes@lunarg.com>
Tue, 17 Oct 2017 16:56:41 +0000 (10:56 -0600)
committerMike Schuchardt <mikes@lunarg.com>
Wed, 18 Oct 2017 15:03:01 +0000 (09:03 -0600)
Change-Id: I742f6054273dbc7e9b87f42fdc40f3305b0735e7

layers/core_validation.cpp

index 90ca8a4..4df50fd 100644 (file)
@@ -10976,8 +10976,8 @@ static const std::unordered_map<std::string, void*> name_to_funcptr_map = {
     {"vkDestroyDebugReportCallbackEXT", (void*)DestroyDebugReportCallbackEXT},
     {"vkDebugReportMessageEXT", (void*)DebugReportMessageEXT},
     {"vkGetPhysicalDeviceDisplayPlanePropertiesKHR", (void*)GetPhysicalDeviceDisplayPlanePropertiesKHR},
-    {"GetDisplayPlaneSupportedDisplaysKHR", (void*)GetDisplayPlaneSupportedDisplaysKHR},
-    {"GetDisplayPlaneCapabilitiesKHR", (void*)GetDisplayPlaneCapabilitiesKHR},
+    {"vkGetDisplayPlaneSupportedDisplaysKHR", (void*)GetDisplayPlaneSupportedDisplaysKHR},
+    {"vkGetDisplayPlaneCapabilitiesKHR", (void*)GetDisplayPlaneCapabilitiesKHR},
     {"vkImportSemaphoreFdKHR", (void*)ImportSemaphoreFdKHR},
     {"vkGetSemaphoreFdKHR", (void*)GetSemaphoreFdKHR},
 };