diff options
| author | Jon Ashburn <jon@lunarg.com> | 2016-03-24 17:26:59 -0600 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2016-03-24 17:26:59 -0600 |
| commit | ca081b52049603090d41dcd451f1e6abdda0dc0e (patch) | |
| tree | 54b5b1047a1981b7f64a7cda5394e8c2ca2e404d | |
| parent | 68c6f13b6a73506c0faa4bb2c0b4bff8b54bc53c (diff) | |
| download | usermoji-ca081b52049603090d41dcd451f1e6abdda0dc0e.tar.xz | |
loader: Fix some typos from the recent WSI checkins: broke wayland
Change-Id: Ie25aaf462498eae7fcc31784015e22376e31a70a
| -rw-r--r-- | loader/wsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/wsi.c b/loader/wsi.c index 405f2c80..43807e98 100644 --- a/loader/wsi.c +++ b/loader/wsi.c @@ -753,7 +753,7 @@ VKAPI_ATTR VkResult VKAPI_CALL terminator_CreateWaylandSurfaceKHR( const VkAllocationCallbacks *pAllocator, VkSurfaceKHR *pSurface) { // First, check to ensure the appropriate extension was enabled: struct loader_instance *ptr_instance = loader_get_instance(instance); - if (!ptr_instance->wsi_waland_surface_enabled) { + if (!ptr_instance->wsi_wayland_surface_enabled) { loader_log(ptr_instance, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "VK_KHR_wayland_surface extension not enabled. " "vkCreateWaylandSurfaceKHR not executed!\n"); @@ -808,7 +808,7 @@ terminator_GetPhysicalDeviceWaylandPresentationSupportKHR( (struct loader_physical_device *)physicalDevice; struct loader_instance *ptr_instance = (struct loader_instance *)phys_dev->this_icd->this_instance; - if (!ptr_instance->wsi_waland_surface_enabled) { + if (!ptr_instance->wsi_wayland_surface_enabled) { loader_log(ptr_instance, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "VK_KHR_wayland_surface extension not enabled. " "vkGetPhysicalDeviceWaylandPresentationSupportKHR not executed!\n"); |
