summaryrefslogtreecommitdiffstats
path: root/src/video_core/vulkan_common/vulkan_surface.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-03vulkan_surface: Pass only window info for surface creationlat9nq1-3/+3
We don't need the whole EmuWindow when creating a surface, and it creates onerous requirements outside of typical usage for creating a surface elsewhere.
2022-11-27Vulkan: update initializationLiam1-5/+33
Co-authored-by: bylaws <bylaws@users.noreply.github.com>
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2020-12-31renderer_vulkan: Initialize surface in separate fileReinUsesLisp1-0/+81
Move surface initialization code to a separate file. It's unlikely to use this code outside of Vulkan, but keeping platform-specific code (Win32, Xlib, Wayland) in its own translation unit keeps things cleaner.