summaryrefslogtreecommitdiffstats
path: root/src/video_core/vulkan_common/vulkan_surface.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vulkan_surface: Pass only window info for surface creationlat9nq2023-05-031-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.
* Vulkan: update initializationLiam2022-11-271-5/+33
| | | | Co-authored-by: bylaws <bylaws@users.noreply.github.com>
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-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.
* renderer_vulkan: Initialize surface in separate fileReinUsesLisp2020-12-311-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.