Vulkan: Fix a typo in SwapChainVk.cpp

BUG=dawn:269

Change-Id: Iacda4d222a81a4ed9e4c623a73e59019cfd6a2c2
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/36180
Commit-Queue: Austin Eng <enga@chromium.org>
Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
Jiawei Shao 2020-12-22 17:35:18 +00:00 committed by Commit Bot service account
parent afcef3ee90
commit 03d0309255
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ namespace dawn_native { namespace vulkan {
VkSurfaceKHR vkSurface = VK_NULL_HANDLE;
DAWN_TRY(CheckVkSuccess(
fn.CreateXlibSurfaceKHR(instance, &createInfo, nullptr, &*vkSurface),
"CreateWin32Surface"));
"CreateXlibSurface"));
return vkSurface;
}
break;