winex11: Remove unnecessary vkDestroySurfaceKHR NULL checks.
This commit is contained in:
parent
0dd1502f57
commit
e3e628247d
1 changed files with 2 additions and 7 deletions
|
@ -371,13 +371,8 @@ static void X11DRV_vkDestroySurfaceKHR(VkInstance instance, VkSurfaceKHR surface
|
|||
if (allocator)
|
||||
FIXME("Support for allocation callbacks not implemented yet\n");
|
||||
|
||||
/* vkDestroySurfaceKHR must handle VK_NULL_HANDLE (0) for surface. */
|
||||
if (x11_surface)
|
||||
{
|
||||
pvkDestroySurfaceKHR( instance, x11_surface->host_surface, NULL /* allocator */ );
|
||||
|
||||
wine_vk_surface_release(x11_surface);
|
||||
}
|
||||
pvkDestroySurfaceKHR( instance, x11_surface->host_surface, NULL /* allocator */ );
|
||||
wine_vk_surface_release(x11_surface);
|
||||
}
|
||||
|
||||
static void X11DRV_vkDestroySwapchainKHR(VkDevice device, VkSwapchainKHR swapchain,
|
||||
|
|
Loading…
Add table
Reference in a new issue