vulkan_surface.h 449 B

123456789101112131415161718
  1. // Copyright 2020 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "video_core/vulkan_common/vulkan_wrapper.h"
  6. namespace Core::Frontend {
  7. class EmuWindow;
  8. }
  9. namespace Vulkan {
  10. [[nodiscard]] vk::SurfaceKHR CreateSurface(const vk::Instance& instance,
  11. const Core::Frontend::EmuWindow& emu_window);
  12. } // namespace Vulkan