gdkvulkancontext-win32.c: Rename "window" as needed

We want to make the distinction between GdkSurface's and native Windows
HWNDs clear, and we don't want to confuse between GdkSurface's and
Vulkan surfaces.
This commit is contained in:
Chun-wei Fan
2024-08-19 18:45:47 +08:00
parent b4c7dd770c
commit deb4de6332

View File

@@ -36,7 +36,7 @@ static VkResult
gdk_win32_vulkan_context_create_surface (GdkVulkanContext *context,
VkSurfaceKHR *surface)
{
GdkSurface *window = gdk_draw_context_get_surface (GDK_DRAW_CONTEXT (context));
GdkSurface *gdk_surface = gdk_draw_context_get_surface (GDK_DRAW_CONTEXT (context));
GdkDisplay *display = gdk_draw_context_get_display (GDK_DRAW_CONTEXT (context));
VkWin32SurfaceCreateInfoKHR info;
VkResult result;
@@ -45,7 +45,7 @@ gdk_win32_vulkan_context_create_surface (GdkVulkanContext *context,
info.pNext = NULL;
info.flags = 0;
info.hinstance = this_module ();
info.hwnd = GDK_SURFACE_HWND (window);
info.hwnd = GDK_SURFACE_HWND (gdk_surface);
result = GDK_VK_CHECK (vkCreateWin32SurfaceKHR,
gdk_vulkan_context_get_instance (context),