mirror of
https://github.com/KytyPS5/KytyPS5.git
synced 2026-08-03 11:23:49 +00:00
* macos: POSIX platform layer (host fault handler, virtual memory) - hostException: Mach/POSIX signal-based host fault handler mirroring the Windows vectored handler (SIGSEGV/SIGBUS/SIGILL), behind '#elif defined(__APPLE__)'. Windows and Linux branches are untouched. - sysLinuxVirtual: mach_vm_region-based is_mapped (no /proc/self/maps on macOS), PTHREAD_MUTEX_NORMAL, and a MAP_FIXED carve-in-place allocator that never leaves an unmapped hole for dyld/Rosetta/Metal to claim. All __APPLE__-guarded; the original Linux allocator path is preserved verbatim. - sysLinuxDbg/sysLinuxFileIO: libgen.h for basename(), and a POSIX opendir/readdir implementation of SysFileGetDents (previously a stub). * macos: guest kernel backing, threads, and POSIX libs - memory/memoryAddressSpace: anonymous shm_open backing (macOS has no memfd_create) and re-reserve-on-unmap so a guest MAP_FIXED remap never destroys a host mapping (__APPLE__-guarded). Drops host <sys/mman.h> MAP_* macros so the guest's constexpr MAP_* constants compile (no-op on Windows). - pthread: undef the host PTHREAD_STACK_MIN macro; on non-Windows, pin the stack-switch asm's guest rsp/rbp to callee-saved r14/r15 (the template clobbers r12/r13); __APPLE__ no-op for the absent pthread_condattr_setclock. The Windows stack-switch asm is byte-identical. - network: define SOCKET/INVALID_SOCKET for the non-Windows paths (were undefined at 20+ use sites), and rename the non-Windows kernel_clock_* helpers to the CamelCase names the callers already use. Both repair the shared non-Windows build. Integer reinterpret_cast -> static_cast. * loader: pin stack-switch asm operands to callee-saved registers RunEntry switches to the guest stack with an asm template that clobbers r12/r13 before consuming its inputs. With plain "r" constraints the compiler may place func/guest_rsp/guest_rbp into r12/r13, so 'callq *func' jumps through the saved host rsp -- a latent miscompile on every platform that any unrelated codegen change can trigger. Pin the inputs to rbx/r14/r15, which the template never touches and the SysV callee preserves. General correctness fix (not macOS-specific); the same fix is applied to pthread RunOnGuestStack. * macos: Vulkan/MoltenVK graphics enablement - pageManager: GPU write-tracking via Mach VM queries + mprotect (mprotect cannot report the previous protection, so the expected-old check is dropped), thread id via pthread_mach_thread_np, 4 KB page-size check -- __APPLE__-guarded. - shaders/renderDraw/vulkanWindow: MoltenVK lacks VK_EXT_color_write_enable, VK_EXT_depth_clip_enable and depthBounds; fall back to static color-write masks and default depth clipping, request VK_KHR_portability_subset, and reuse the graphics queue for present when only one queue is exposed. Non-Apple pipeline/extension setup is unchanged. - window: optional borderless window (KYTY_BORDERLESS) to sidestep a Rosetta NSException in macOS window chrome. * graphics: macOS thread identity for region tracking Region-ownership locks resolve the current thread via GetCurrentThreadId() on Windows and EXIT elsewhere. Use the Mach thread port on macOS (nonzero per-thread id; 0 stays the no-owner sentinel). * macos: marshal AppKit window operations to the main thread The present worker thread shows the window, updates its icon and title, and recreates a lost Vulkan surface. AppKit traps with 'Must only be used from the main thread' when these run off the main thread. Route them through a small task queue drained by the SDL main loop (an SDL_USEREVENT wakes the loop when it is blocked in SDL_WaitEvent). Title updates are fire-and-forget; showing the window and surface recreation wait for completion. Windows and Linux call the SDL functions directly, as before. * build: ignore the _Build output directory _Build is the conventional out-of-tree build location (only _Build/vscode-clang was ignored); a stray git add could sweep build artifacts into a commit. * macos: isolate stack-switch workaround --------- Co-authored-by: nmzik <Nmzik@mail.ru>
865 lines
31 KiB
C++
865 lines
31 KiB
C++
#include "SDL.h"
|
|
#include "SDL_error.h"
|
|
#include "SDL_events.h"
|
|
#include "SDL_gamecontroller.h"
|
|
#include "SDL_hints.h"
|
|
#include "SDL_joystick.h"
|
|
#include "SDL_keyboard.h"
|
|
#include "SDL_keycode.h"
|
|
#include "SDL_mouse.h"
|
|
#include "SDL_pixels.h"
|
|
#include "SDL_rwops.h"
|
|
#include "SDL_stdinc.h"
|
|
#include "SDL_surface.h"
|
|
#include "SDL_thread.h"
|
|
#include "SDL_touch.h"
|
|
#include "SDL_video.h"
|
|
#include "SDL_vulkan.h"
|
|
#include "common/assert.h"
|
|
#include "common/common.h"
|
|
#include "common/emulatorConfig.h"
|
|
#include "common/file.h"
|
|
#include "common/logging/log.h"
|
|
#include "common/profiler.h"
|
|
#include "common/stringUtils.h"
|
|
#include "common/subsystems.h"
|
|
#include "common/systemInfo.h"
|
|
#include "common/threads.h"
|
|
#include "common/timer.h"
|
|
#include "graphics/host_gpu/graphicContext.h"
|
|
#include "graphics/host_gpu/renderer/render.h"
|
|
#include "graphics/host_gpu/renderer/renderContext.h"
|
|
#include "graphics/host_gpu/vma.h"
|
|
#include "graphics/host_gpu/vulkanCommon.h"
|
|
#include "graphics/presentation/presenter.h"
|
|
#include "graphics/presentation/renderDoc.h"
|
|
#include "graphics/presentation/videoOut.h"
|
|
#include "graphics/presentation/window/windowInternal.h"
|
|
#include "libs/controller.h"
|
|
#include "loader/systemContent.h"
|
|
|
|
#include <algorithm>
|
|
#include <array>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <deque>
|
|
#include <fmt/format.h>
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <vulkan/vk_platform.h>
|
|
|
|
// IWYU pragma: no_include <intrin.h>
|
|
|
|
#define KYTY_ENABLE_DEBUG_PRINTF
|
|
#define KYTY_DBG_INPUT
|
|
|
|
namespace Libs::Graphics {
|
|
|
|
struct Presenter::Frame {
|
|
VulkanImage image;
|
|
std::unique_ptr<CommandBuffer> present_commands;
|
|
bool busy = false;
|
|
bool reusing_last = false;
|
|
|
|
void Configure(GraphicContext& graphics, vk::Extent2D extent, vk::Format format);
|
|
void Transit(vk::CommandBuffer command, vk::ImageLayout layout, vk::AccessFlags2 access);
|
|
void CopyFrom(CommandBuffer& command, Image& source);
|
|
void Clear(CommandBuffer& command, const vk::ClearColorValue& color);
|
|
};
|
|
|
|
class FramePool final {
|
|
public:
|
|
explicit FramePool(WindowContext& window): m_window(window) {}
|
|
~FramePool() {
|
|
for (auto& frame: m_frames) {
|
|
if (frame->present_commands != nullptr) {
|
|
frame->present_commands->WaitForFenceOnly();
|
|
}
|
|
if (frame->image.image != nullptr) {
|
|
m_window.graphic_ctx.DeleteImage(frame->image);
|
|
}
|
|
}
|
|
}
|
|
KYTY_CLASS_NO_COPY(FramePool);
|
|
|
|
void Initialize(uint32_t count, vk::Format format) {
|
|
if (count == 0 || format == vk::Format::eUndefined) {
|
|
EXIT("prepared-frame pool requires at least one frame\n");
|
|
}
|
|
Common::LockGuard lock(m_mutex);
|
|
if (!m_frames.empty()) {
|
|
EXIT("prepared-frame pool was initialized twice\n");
|
|
}
|
|
m_format = format;
|
|
m_frames.reserve(count);
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
auto frame = std::make_unique<Presenter::Frame>();
|
|
m_free.push_back(frame.get());
|
|
m_frames.push_back(std::move(frame));
|
|
}
|
|
}
|
|
|
|
void SetFormat(vk::Format format) {
|
|
if (format == vk::Format::eUndefined) {
|
|
EXIT("prepared-frame pool requires a presentation format\n");
|
|
}
|
|
Common::LockGuard lock(m_mutex);
|
|
m_format = format;
|
|
}
|
|
|
|
vk::Format GetFormat() {
|
|
Common::LockGuard lock(m_mutex);
|
|
if (m_format == vk::Format::eUndefined) {
|
|
EXIT("prepared-frame pool has no presentation format\n");
|
|
}
|
|
return m_format;
|
|
}
|
|
|
|
Presenter::Frame* Acquire() {
|
|
m_mutex.Lock();
|
|
if (m_frames.empty()) {
|
|
EXIT("prepared-frame pool was used before swapchain initialization\n");
|
|
}
|
|
while (m_free.empty()) {
|
|
m_available.Wait(&m_mutex);
|
|
}
|
|
auto* frame = m_free.front();
|
|
m_free.pop_front();
|
|
if (frame->busy) {
|
|
EXIT("prepared-frame pool returned an invalid frame\n");
|
|
}
|
|
if (m_last_frame == frame) {
|
|
m_last_frame = nullptr;
|
|
}
|
|
frame->busy = true;
|
|
frame->reusing_last = false;
|
|
m_mutex.Unlock();
|
|
|
|
WaitForFrame(*frame);
|
|
return frame;
|
|
}
|
|
|
|
Presenter::Frame* AcquireLast() {
|
|
m_mutex.Lock();
|
|
auto* frame = m_last_frame;
|
|
if (frame == nullptr) {
|
|
m_mutex.Unlock();
|
|
return nullptr;
|
|
}
|
|
auto free = std::find(m_free.begin(), m_free.end(), frame);
|
|
if (free == m_free.end() || frame->busy) {
|
|
m_mutex.Unlock();
|
|
EXIT("last submitted frame is not available for reuse\n");
|
|
}
|
|
m_free.erase(free);
|
|
m_last_frame = nullptr;
|
|
frame->busy = true;
|
|
frame->reusing_last = true;
|
|
m_mutex.Unlock();
|
|
|
|
WaitForFrame(*frame);
|
|
return frame;
|
|
}
|
|
|
|
void ValidateForPresent(Presenter::Frame* frame, bool reuse) {
|
|
Common::LockGuard lock(m_mutex);
|
|
if (frame == nullptr || !frame->busy || frame->reusing_last != reuse) {
|
|
EXIT("prepared frame has invalid presentation ownership\n");
|
|
}
|
|
}
|
|
|
|
void Release(Presenter::Frame* frame, bool make_last = false) {
|
|
if (frame == nullptr) {
|
|
EXIT("cannot release a null prepared frame\n");
|
|
}
|
|
Common::LockGuard lock(m_mutex);
|
|
if (!frame->busy) {
|
|
EXIT("prepared frame was released twice\n");
|
|
}
|
|
frame->busy = false;
|
|
frame->reusing_last = false;
|
|
if (make_last) {
|
|
m_last_frame = frame;
|
|
}
|
|
m_free.push_back(frame);
|
|
m_available.Signal();
|
|
}
|
|
|
|
private:
|
|
static void WaitForFrame(Presenter::Frame& frame) {
|
|
// The producer only waits here. Reset stays on the presentation thread that owns the
|
|
// allocating Vulkan command pool.
|
|
if (frame.present_commands != nullptr) {
|
|
frame.present_commands->WaitForFenceOnly();
|
|
}
|
|
}
|
|
|
|
WindowContext& m_window;
|
|
Common::Mutex m_mutex;
|
|
Common::CondVar m_available;
|
|
std::vector<std::unique_ptr<Presenter::Frame>> m_frames;
|
|
std::deque<Presenter::Frame*> m_free;
|
|
Presenter::Frame* m_last_frame = nullptr;
|
|
vk::Format m_format = vk::Format::eUndefined;
|
|
};
|
|
|
|
void Presenter::Frame::Configure(GraphicContext& graphics, vk::Extent2D extent,
|
|
vk::Format format) {
|
|
if (extent.width == 0 || extent.height == 0 || format == vk::Format::eUndefined) {
|
|
EXIT("unsupported prepared frame, extent=%ux%u format=%d\n", extent.width, extent.height,
|
|
static_cast<int>(format));
|
|
}
|
|
const auto features = graphics.GetFormatProperties(format).optimalTilingFeatures;
|
|
const auto required = vk::FormatFeatureFlagBits::eBlitSrc |
|
|
vk::FormatFeatureFlagBits::eSampledImageFilterLinear |
|
|
vk::FormatFeatureFlagBits::eTransferSrc |
|
|
vk::FormatFeatureFlagBits::eTransferDst;
|
|
if ((features & required) != required) {
|
|
EXIT("prepared presentation format lacks optimal blit support: format=%d features=0x%x\n",
|
|
static_cast<int>(format),
|
|
static_cast<vk::FormatFeatureFlags::MaskType>(features));
|
|
}
|
|
|
|
auto& dst = image;
|
|
const bool compatible = dst.image != nullptr && dst.extent.width == extent.width &&
|
|
dst.extent.height == extent.height && dst.format == format;
|
|
if (compatible) {
|
|
return;
|
|
}
|
|
if (dst.image != nullptr) {
|
|
graphics.DeleteImage(dst);
|
|
dst.memory = {};
|
|
}
|
|
|
|
dst.extent = {extent.width, extent.height, 1};
|
|
dst.format = format;
|
|
dst.layers = 1;
|
|
dst.mip_levels = 1;
|
|
dst.state = {};
|
|
dst.subresource_states.clear();
|
|
dst.memory.property = vk::MemoryPropertyFlagBits::eDeviceLocal;
|
|
|
|
vk::ImageCreateInfo create {};
|
|
create.sType = vk::StructureType::eImageCreateInfo;
|
|
create.imageType = vk::ImageType::e2D;
|
|
create.extent = {dst.extent.width, dst.extent.height, 1};
|
|
create.mipLevels = 1;
|
|
create.arrayLayers = 1;
|
|
create.format = dst.format;
|
|
create.tiling = vk::ImageTiling::eOptimal;
|
|
create.initialLayout = vk::ImageLayout::eUndefined;
|
|
create.usage = vk::ImageUsageFlagBits::eTransferSrc | vk::ImageUsageFlagBits::eTransferDst;
|
|
create.sharingMode = vk::SharingMode::eExclusive;
|
|
create.samples = vk::SampleCountFlagBits::e1;
|
|
if (!graphics.CreateImage(create, dst)) {
|
|
EXIT("failed to allocate prepared presentation image, extent=%ux%u format=%d\n",
|
|
dst.extent.width, dst.extent.height, static_cast<int>(dst.format));
|
|
}
|
|
}
|
|
|
|
void Presenter::Frame::Transit(vk::CommandBuffer command, vk::ImageLayout layout,
|
|
vk::AccessFlags2 access) {
|
|
const auto stage = access == vk::AccessFlagBits2::eTransferRead ||
|
|
access == vk::AccessFlagBits2::eTransferWrite
|
|
? vk::PipelineStageFlagBits2::eTransfer
|
|
: vk::PipelineStageFlagBits2::eAllCommands;
|
|
constexpr auto writes = vk::AccessFlagBits2::eTransferWrite |
|
|
vk::AccessFlagBits2::eShaderWrite |
|
|
vk::AccessFlagBits2::eMemoryWrite;
|
|
if (image.state.layout == layout && image.state.access_mask == access &&
|
|
!static_cast<bool>(image.state.access_mask & writes)) {
|
|
return;
|
|
}
|
|
vk::ImageMemoryBarrier2 barrier {};
|
|
barrier.srcStageMask = image.state.pl_stage;
|
|
barrier.srcAccessMask = image.state.access_mask;
|
|
barrier.dstStageMask = stage;
|
|
barrier.dstAccessMask = access;
|
|
barrier.oldLayout = image.state.layout;
|
|
barrier.newLayout = layout;
|
|
barrier.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
|
|
barrier.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
|
|
barrier.image = image.image;
|
|
barrier.subresourceRange.aspectMask = vk::ImageAspectFlagBits::eColor;
|
|
barrier.subresourceRange.baseMipLevel = 0;
|
|
barrier.subresourceRange.levelCount = VK_REMAINING_MIP_LEVELS;
|
|
barrier.subresourceRange.baseArrayLayer = 0;
|
|
barrier.subresourceRange.layerCount = VK_REMAINING_ARRAY_LAYERS;
|
|
vk::DependencyInfo dependency {};
|
|
dependency.imageMemoryBarrierCount = 1;
|
|
dependency.pImageMemoryBarriers = &barrier;
|
|
command.pipelineBarrier2(dependency);
|
|
image.state = {stage, access, layout};
|
|
image.subresource_states.clear();
|
|
}
|
|
|
|
void Presenter::Frame::CopyFrom(CommandBuffer& command_buffer, Image& source) {
|
|
command_buffer.EndRendering();
|
|
auto command = command_buffer.Handle();
|
|
source.Transit(vk::ImageLayout::eTransferSrcOptimal,
|
|
vk::AccessFlagBits2::eTransferRead, {}, command);
|
|
Transit(command, vk::ImageLayout::eTransferDstOptimal,
|
|
vk::AccessFlagBits2::eTransferWrite);
|
|
vk::ImageCopy copy {};
|
|
copy.srcSubresource = {vk::ImageAspectFlagBits::eColor, 0, 0,
|
|
source.backing.layers};
|
|
copy.dstSubresource = {vk::ImageAspectFlagBits::eColor, 0, 0, image.layers};
|
|
copy.extent = {std::min(source.backing.extent.width, image.extent.width),
|
|
std::min(source.backing.extent.height, image.extent.height), 1};
|
|
EXIT_IF(copy.srcSubresource.layerCount != copy.dstSubresource.layerCount);
|
|
command.copyImage(source.backing.image, vk::ImageLayout::eTransferSrcOptimal,
|
|
image.image, vk::ImageLayout::eTransferDstOptimal, copy);
|
|
Transit(command, vk::ImageLayout::eTransferSrcOptimal,
|
|
vk::AccessFlagBits2::eTransferRead);
|
|
}
|
|
|
|
void Presenter::Frame::Clear(CommandBuffer& command_buffer,
|
|
const vk::ClearColorValue& color) {
|
|
command_buffer.EndRendering();
|
|
auto command = command_buffer.Handle();
|
|
Transit(command, vk::ImageLayout::eTransferDstOptimal,
|
|
vk::AccessFlagBits2::eTransferWrite);
|
|
const vk::ImageSubresourceRange range {
|
|
vk::ImageAspectFlagBits::eColor, 0, 1, 0, 1};
|
|
command.clearColorImage(image.image, vk::ImageLayout::eTransferDstOptimal, &color, 1,
|
|
&range);
|
|
Transit(command, vk::ImageLayout::eTransferSrcOptimal,
|
|
vk::AccessFlagBits2::eTransferRead);
|
|
}
|
|
|
|
class Swapchain final {
|
|
public:
|
|
enum class Status : uint8_t { Success, Recreate, SurfaceLost };
|
|
|
|
explicit Swapchain(WindowContext& window): m_window(window) {}
|
|
~Swapchain();
|
|
KYTY_CLASS_NO_COPY(Swapchain);
|
|
|
|
void Create();
|
|
void Recreate(bool surface_lost = false);
|
|
[[nodiscard]] Status AcquireNextImage();
|
|
void RecordPresentCommands(CommandBuffer& command, VulkanImage& source);
|
|
void Submit(CommandBuffer& command);
|
|
[[nodiscard]] Status Present();
|
|
|
|
[[nodiscard]] uint32_t ImageCount() const noexcept {
|
|
return static_cast<uint32_t>(m_images.size());
|
|
}
|
|
[[nodiscard]] vk::Format Format() const noexcept { return m_format; }
|
|
|
|
private:
|
|
void Destroy();
|
|
void RefreshSurfaceSize();
|
|
|
|
WindowContext& m_window;
|
|
vk::SwapchainKHR m_handle = nullptr;
|
|
vk::Format m_format = vk::Format::eUndefined;
|
|
vk::Extent2D m_extent {};
|
|
std::vector<vk::Image> m_images;
|
|
std::vector<vk::ImageView> m_image_views;
|
|
std::vector<vk::Semaphore> m_image_acquired;
|
|
std::vector<vk::Semaphore> m_render_complete;
|
|
uint32_t m_image_index = static_cast<uint32_t>(-1);
|
|
uint32_t m_frame_index = 0;
|
|
};
|
|
|
|
struct Presenter::Impl {
|
|
explicit Impl(WindowContext& owner)
|
|
: renderer(*owner.render_context), window(owner), swapchain(owner),
|
|
present_scheduler(renderer, owner.graphic_ctx), frames(owner) {
|
|
EXIT_IF(owner.render_context == nullptr);
|
|
swapchain.Create();
|
|
frames.Initialize(swapchain.ImageCount(), swapchain.Format());
|
|
}
|
|
|
|
void RecoverSwapchain(Swapchain::Status status) {
|
|
LOGF("Recovering Vulkan swapchain%s\n",
|
|
status == Swapchain::Status::SurfaceLost ? " and surface" : "");
|
|
swapchain.Recreate(status == Swapchain::Status::SurfaceLost);
|
|
frames.SetFormat(swapchain.Format());
|
|
}
|
|
|
|
Image& ResolveSurface(const ImageInfo& info) {
|
|
TextureCache::ImageDesc desc {};
|
|
desc.info = info;
|
|
desc.view_info.format = info.pixel_format;
|
|
desc.view_info.type = vk::ImageViewType::e2D;
|
|
desc.view_info.aspect = vk::ImageAspectFlagBits::eColor;
|
|
desc.view_info.base_level = 0;
|
|
desc.view_info.level_count = 1;
|
|
desc.view_info.base_layer = 0;
|
|
desc.view_info.layer_count = 1;
|
|
desc.view_info.usage = vk::ImageUsageFlagBits::eTransferSrc;
|
|
desc.type = TextureCache::BindingType::VideoOut;
|
|
|
|
auto& cache = renderer.GetTextureCache();
|
|
auto& image = cache.GetImage(cache.FindImage(desc));
|
|
image.usage.video_out = true;
|
|
return image;
|
|
}
|
|
|
|
RenderContext& renderer;
|
|
WindowContext& window;
|
|
Swapchain swapchain;
|
|
CommandScheduler present_scheduler;
|
|
FramePool frames;
|
|
};
|
|
|
|
void Swapchain::Create() {
|
|
auto& graphics = m_window.graphic_ctx;
|
|
EXIT_IF(graphics.screen_width == 0);
|
|
EXIT_IF(graphics.screen_height == 0);
|
|
EXIT_IF(graphics.device == nullptr);
|
|
EXIT_IF(m_window.surface == nullptr);
|
|
|
|
Common::LockGuard lock(m_window.mutex);
|
|
const auto& surface = m_window.surface_capabilities;
|
|
EXIT_NOT_IMPLEMENTED(surface.formats.empty());
|
|
|
|
m_extent = surface.capabilities.currentExtent;
|
|
if (m_extent.width == std::numeric_limits<uint32_t>::max()) {
|
|
m_extent.width =
|
|
std::clamp(graphics.screen_width, surface.capabilities.minImageExtent.width,
|
|
surface.capabilities.maxImageExtent.width);
|
|
m_extent.height =
|
|
std::clamp(graphics.screen_height, surface.capabilities.minImageExtent.height,
|
|
surface.capabilities.maxImageExtent.height);
|
|
}
|
|
uint32_t image_count = surface.capabilities.minImageCount + 1;
|
|
if (surface.capabilities.maxImageCount != 0) {
|
|
image_count = std::min(image_count, surface.capabilities.maxImageCount);
|
|
}
|
|
const auto transform =
|
|
surface.capabilities.supportedTransforms & vk::SurfaceTransformFlagBitsKHR::eIdentity
|
|
? vk::SurfaceTransformFlagBitsKHR::eIdentity
|
|
: surface.capabilities.currentTransform;
|
|
const auto composite =
|
|
surface.capabilities.supportedCompositeAlpha & vk::CompositeAlphaFlagBitsKHR::eOpaque
|
|
? vk::CompositeAlphaFlagBitsKHR::eOpaque
|
|
: vk::CompositeAlphaFlagBitsKHR::eInherit;
|
|
|
|
vk::SurfaceFormatKHR format {vk::Format::eR8G8B8A8Unorm,
|
|
vk::ColorSpaceKHR::eSrgbNonlinear};
|
|
if (surface.formats.size() != 1 ||
|
|
surface.formats.front().format != vk::Format::eUndefined) {
|
|
const auto it = std::find_if(surface.formats.begin(), surface.formats.end(),
|
|
[](const vk::SurfaceFormatKHR& candidate) {
|
|
return candidate.format ==
|
|
vk::Format::eB8G8R8A8Unorm ||
|
|
candidate.format ==
|
|
vk::Format::eR8G8B8A8Unorm;
|
|
});
|
|
if (it == surface.formats.end()) {
|
|
EXIT("no supported UNORM swapchain format\n");
|
|
}
|
|
format = *it;
|
|
}
|
|
m_format = format.format;
|
|
const auto swapchain_features =
|
|
graphics.GetFormatProperties(m_format).optimalTilingFeatures;
|
|
if (!static_cast<bool>(swapchain_features & vk::FormatFeatureFlagBits::eBlitDst)) {
|
|
EXIT("swapchain format cannot be a blit destination: format=%d\n",
|
|
static_cast<int>(m_format));
|
|
}
|
|
|
|
vk::SwapchainCreateInfoKHR create_info {};
|
|
create_info.sType = vk::StructureType::eSwapchainCreateInfoKHR;
|
|
create_info.surface = m_window.surface;
|
|
create_info.minImageCount = image_count;
|
|
create_info.imageFormat = format.format;
|
|
create_info.imageColorSpace = format.colorSpace;
|
|
create_info.imageExtent = m_extent;
|
|
create_info.imageArrayLayers = 1;
|
|
create_info.imageUsage =
|
|
vk::ImageUsageFlagBits::eColorAttachment | vk::ImageUsageFlagBits::eTransferDst;
|
|
create_info.imageSharingMode = vk::SharingMode::eExclusive;
|
|
create_info.preTransform = transform;
|
|
create_info.compositeAlpha = composite;
|
|
create_info.presentMode = vk::PresentModeKHR::eFifo;
|
|
create_info.clipped = VK_TRUE;
|
|
RequireVulkanSuccess(graphics.device.createSwapchainKHR(&create_info, nullptr, &m_handle),
|
|
"vkCreateSwapchainKHR");
|
|
EXIT_IF(m_handle == nullptr);
|
|
|
|
m_images = EnumerateVulkan<vk::Image>(
|
|
"vkGetSwapchainImagesKHR", [&](uint32_t* count, vk::Image* images) {
|
|
return graphics.device.getSwapchainImagesKHR(m_handle, count, images);
|
|
});
|
|
EXIT_NOT_IMPLEMENTED(m_images.empty());
|
|
|
|
m_image_views.resize(m_images.size());
|
|
for (size_t i = 0; i < m_images.size(); i++) {
|
|
vk::ImageViewCreateInfo view {};
|
|
view.sType = vk::StructureType::eImageViewCreateInfo;
|
|
view.image = m_images[i];
|
|
view.viewType = vk::ImageViewType::e2D;
|
|
view.format = m_format;
|
|
view.components = {};
|
|
view.subresourceRange.aspectMask = vk::ImageAspectFlagBits::eColor;
|
|
view.subresourceRange.baseArrayLayer = 0;
|
|
view.subresourceRange.baseMipLevel = 0;
|
|
view.subresourceRange.layerCount = 1;
|
|
view.subresourceRange.levelCount = 1;
|
|
RequireVulkanSuccess(
|
|
graphics.device.createImageView(&view, nullptr, &m_image_views[i]),
|
|
"vkCreateImageView");
|
|
EXIT_IF(m_image_views[i] == nullptr);
|
|
}
|
|
|
|
vk::SemaphoreCreateInfo semaphore_info {};
|
|
semaphore_info.sType = vk::StructureType::eSemaphoreCreateInfo;
|
|
m_image_acquired.resize(m_images.size());
|
|
m_render_complete.resize(m_images.size());
|
|
for (size_t i = 0; i < m_images.size(); i++) {
|
|
RequireVulkanSuccess(
|
|
graphics.device.createSemaphore(&semaphore_info, nullptr, &m_image_acquired[i]),
|
|
"create swapchain image-acquired semaphore");
|
|
RequireVulkanSuccess(
|
|
graphics.device.createSemaphore(&semaphore_info, nullptr, &m_render_complete[i]),
|
|
"create swapchain render-complete semaphore");
|
|
}
|
|
m_image_index = static_cast<uint32_t>(-1);
|
|
m_frame_index = 0;
|
|
}
|
|
|
|
Swapchain::~Swapchain() {
|
|
Destroy();
|
|
}
|
|
|
|
void Swapchain::Destroy() {
|
|
if (m_handle == nullptr && m_image_acquired.empty() && m_render_complete.empty() &&
|
|
m_image_views.empty()) {
|
|
return;
|
|
}
|
|
auto& graphics = m_window.graphic_ctx;
|
|
|
|
{
|
|
Common::LockGuard queue_lock(graphics.queue_mutex);
|
|
RequireVulkanSuccess(graphics.queue.waitIdle(), "wait for swapchain queue");
|
|
}
|
|
|
|
for (const auto semaphore: m_image_acquired) {
|
|
if (semaphore != nullptr) {
|
|
graphics.device.destroySemaphore(semaphore, nullptr);
|
|
}
|
|
}
|
|
for (const auto semaphore: m_render_complete) {
|
|
if (semaphore != nullptr) {
|
|
graphics.device.destroySemaphore(semaphore, nullptr);
|
|
}
|
|
}
|
|
for (const auto view: m_image_views) {
|
|
if (view != nullptr) {
|
|
graphics.device.destroyImageView(view, nullptr);
|
|
}
|
|
}
|
|
if (m_handle != nullptr) {
|
|
graphics.device.destroySwapchainKHR(m_handle, nullptr);
|
|
}
|
|
|
|
m_handle = nullptr;
|
|
m_format = vk::Format::eUndefined;
|
|
m_extent = {};
|
|
m_image_index = static_cast<uint32_t>(-1);
|
|
m_frame_index = 0;
|
|
m_images.clear();
|
|
m_image_views.clear();
|
|
m_image_acquired.clear();
|
|
m_render_complete.clear();
|
|
}
|
|
|
|
void Swapchain::RefreshSurfaceSize() {
|
|
int width = 0;
|
|
int height = 0;
|
|
SDL_Vulkan_GetDrawableSize(m_window.window, &width, &height);
|
|
if (width > 0 && height > 0) {
|
|
m_window.graphic_ctx.screen_width = static_cast<uint32_t>(width);
|
|
m_window.graphic_ctx.screen_height = static_cast<uint32_t>(height);
|
|
}
|
|
|
|
m_window.RefreshSurfaceCapabilities();
|
|
}
|
|
|
|
void Swapchain::Recreate(bool surface_lost) {
|
|
Destroy();
|
|
if (surface_lost) {
|
|
#if defined(__APPLE__)
|
|
// Surface recreation goes through SDL_Vulkan_CreateSurface, which touches the
|
|
// window's view/layer and must run on the main thread on macOS.
|
|
m_window.RunOnMainThread([this] { m_window.RecreateSurface(); }, true);
|
|
#else
|
|
m_window.RecreateSurface();
|
|
#endif
|
|
}
|
|
RefreshSurfaceSize();
|
|
Create();
|
|
}
|
|
|
|
Swapchain::Status Swapchain::AcquireNextImage() {
|
|
EXIT_IF(m_handle == nullptr || m_frame_index >= m_image_acquired.size());
|
|
m_image_index = static_cast<uint32_t>(-1);
|
|
const auto result = m_window.graphic_ctx.device.acquireNextImageKHR(
|
|
m_handle, std::numeric_limits<uint64_t>::max(), m_image_acquired[m_frame_index], nullptr,
|
|
&m_image_index);
|
|
switch (result) {
|
|
case vk::Result::eSuccess: break;
|
|
case vk::Result::eSuboptimalKHR:
|
|
LOGF("vkAcquireNextImageKHR returned vk::Result::eSuboptimalKHR\n");
|
|
return Status::Recreate;
|
|
case vk::Result::eErrorOutOfDateKHR:
|
|
LOGF("vkAcquireNextImageKHR returned vk::Result::eErrorOutOfDateKHR\n");
|
|
return Status::Recreate;
|
|
case vk::Result::eErrorUnknown:
|
|
LOGF("vkAcquireNextImageKHR returned vk::Result::eErrorUnknown\n");
|
|
return Status::Recreate;
|
|
case vk::Result::eErrorSurfaceLostKHR:
|
|
LOGF("vkAcquireNextImageKHR returned vk::Result::eErrorSurfaceLostKHR\n");
|
|
return Status::SurfaceLost;
|
|
default: EXIT("vkAcquireNextImageKHR failed: %s\n", VulkanToString(result).c_str());
|
|
}
|
|
EXIT_IF(m_image_index >= m_images.size());
|
|
return Status::Success;
|
|
}
|
|
|
|
void Swapchain::RecordPresentCommands(CommandBuffer& command, VulkanImage& source) {
|
|
if (source.state.layout != vk::ImageLayout::eTransferSrcOptimal) {
|
|
EXIT("invalid prepared presentation image, vk_image=%p layout=%d\n",
|
|
static_cast<void*>(source.image), static_cast<int>(source.state.layout));
|
|
}
|
|
EXIT_IF(m_image_index >= m_images.size());
|
|
auto vk_command = command.Handle();
|
|
command.Begin();
|
|
|
|
vk::ImageMemoryBarrier to_transfer {};
|
|
to_transfer.sType = vk::StructureType::eImageMemoryBarrier;
|
|
to_transfer.dstAccessMask = vk::AccessFlagBits::eTransferWrite;
|
|
to_transfer.oldLayout = vk::ImageLayout::eUndefined;
|
|
to_transfer.newLayout = vk::ImageLayout::eTransferDstOptimal;
|
|
to_transfer.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
|
|
to_transfer.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
|
|
to_transfer.image = m_images[m_image_index];
|
|
to_transfer.subresourceRange.aspectMask = vk::ImageAspectFlagBits::eColor;
|
|
to_transfer.subresourceRange.baseMipLevel = 0;
|
|
to_transfer.subresourceRange.levelCount = 1;
|
|
to_transfer.subresourceRange.baseArrayLayer = 0;
|
|
to_transfer.subresourceRange.layerCount = 1;
|
|
vk_command.pipelineBarrier(vk::PipelineStageFlagBits::eTopOfPipe,
|
|
vk::PipelineStageFlagBits::eTransfer, vk::DependencyFlags {}, 0,
|
|
nullptr, 0, nullptr, 1, &to_transfer);
|
|
|
|
vk::ImageBlit region {};
|
|
region.srcSubresource.aspectMask = vk::ImageAspectFlagBits::eColor;
|
|
region.srcSubresource.mipLevel = 0;
|
|
region.srcSubresource.baseArrayLayer = 0;
|
|
region.srcSubresource.layerCount = 1;
|
|
region.srcOffsets[1].x = static_cast<int>(source.extent.width);
|
|
region.srcOffsets[1].y = static_cast<int>(source.extent.height);
|
|
region.srcOffsets[1].z = 1;
|
|
region.dstSubresource.aspectMask = vk::ImageAspectFlagBits::eColor;
|
|
region.dstSubresource.mipLevel = 0;
|
|
region.dstSubresource.baseArrayLayer = 0;
|
|
region.dstSubresource.layerCount = 1;
|
|
region.dstOffsets[1].x = static_cast<int>(m_extent.width);
|
|
region.dstOffsets[1].y = static_cast<int>(m_extent.height);
|
|
region.dstOffsets[1].z = 1;
|
|
vk_command.blitImage(source.image, vk::ImageLayout::eTransferSrcOptimal,
|
|
m_images[m_image_index], vk::ImageLayout::eTransferDstOptimal, 1, ®ion,
|
|
vk::Filter::eLinear);
|
|
|
|
vk::ImageMemoryBarrier to_present {};
|
|
to_present.sType = vk::StructureType::eImageMemoryBarrier;
|
|
to_present.srcAccessMask = vk::AccessFlagBits::eTransferWrite;
|
|
to_present.dstAccessMask = vk::AccessFlagBits::eMemoryRead;
|
|
to_present.oldLayout = vk::ImageLayout::eTransferDstOptimal;
|
|
to_present.newLayout = vk::ImageLayout::ePresentSrcKHR;
|
|
to_present.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
|
|
to_present.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
|
|
to_present.image = m_images[m_image_index];
|
|
to_present.subresourceRange.aspectMask = vk::ImageAspectFlagBits::eColor;
|
|
to_present.subresourceRange.baseMipLevel = 0;
|
|
to_present.subresourceRange.levelCount = 1;
|
|
to_present.subresourceRange.baseArrayLayer = 0;
|
|
to_present.subresourceRange.layerCount = 1;
|
|
vk_command.pipelineBarrier(vk::PipelineStageFlagBits::eAllCommands,
|
|
vk::PipelineStageFlagBits::eAllCommands,
|
|
vk::DependencyFlagBits::eByRegion, 0,
|
|
nullptr, 0, nullptr, 1, &to_present);
|
|
command.End();
|
|
}
|
|
|
|
void Swapchain::Submit(CommandBuffer& command) {
|
|
EXIT_IF(m_frame_index >= m_image_acquired.size() || m_image_index >= m_render_complete.size());
|
|
SubmitInfo submit;
|
|
submit.AddWait(m_image_acquired[m_frame_index], 1, vk::PipelineStageFlagBits::eTransfer);
|
|
submit.AddSignal(m_render_complete[m_image_index]);
|
|
command.Execute(submit);
|
|
}
|
|
|
|
Swapchain::Status Swapchain::Present() {
|
|
EXIT_IF(m_image_index >= m_render_complete.size());
|
|
const auto ready = m_render_complete[m_image_index];
|
|
vk::PresentInfoKHR present {};
|
|
present.sType = vk::StructureType::ePresentInfoKHR;
|
|
present.swapchainCount = 1;
|
|
present.pSwapchains = &m_handle;
|
|
present.pImageIndices = &m_image_index;
|
|
present.pWaitSemaphores = &ready;
|
|
present.waitSemaphoreCount = 1;
|
|
|
|
vk::Result result;
|
|
{
|
|
Common::LockGuard lock(m_window.graphic_ctx.queue_mutex);
|
|
result = m_window.graphic_ctx.queue.presentKHR(&present);
|
|
}
|
|
switch (result) {
|
|
case vk::Result::eSuccess: break;
|
|
case vk::Result::eSuboptimalKHR:
|
|
LOGF("vkQueuePresentKHR returned vk::Result::eSuboptimalKHR\n");
|
|
return Status::Recreate;
|
|
case vk::Result::eErrorOutOfDateKHR:
|
|
LOGF("vkQueuePresentKHR returned vk::Result::eErrorOutOfDateKHR\n");
|
|
return Status::Recreate;
|
|
case vk::Result::eErrorSurfaceLostKHR:
|
|
LOGF("vkQueuePresentKHR returned vk::Result::eErrorSurfaceLostKHR\n");
|
|
return Status::SurfaceLost;
|
|
default: EXIT("vkQueuePresentKHR failed: %s\n", VulkanToString(result).c_str());
|
|
}
|
|
m_frame_index = (m_frame_index + 1u) % static_cast<uint32_t>(m_images.size());
|
|
return Status::Success;
|
|
}
|
|
|
|
Presenter::Presenter(WindowContext& window): m_impl(std::make_unique<Impl>(window)) {}
|
|
|
|
Presenter::~Presenter() = default;
|
|
|
|
Presenter::Frame& Presenter::PrepareFrame(CommandBuffer& buffer, const ImageInfo& info) {
|
|
KYTY_PROFILER_FUNCTION();
|
|
EXIT_IF(buffer.IsInvalid());
|
|
auto* frame = m_impl->frames.Acquire();
|
|
Common::LockGuard render_lock(m_impl->renderer.GetMutex());
|
|
auto& image = m_impl->ResolveSurface(info);
|
|
if (image.backing.format == vk::Format::eUndefined) {
|
|
EXIT("unsupported presentation source, image=%p\n", static_cast<const void*>(&image));
|
|
}
|
|
|
|
auto frame_format = info.pixel_format;
|
|
switch (frame_format) {
|
|
case vk::Format::eR8G8B8A8Srgb: frame_format = vk::Format::eR8G8B8A8Unorm; break;
|
|
case vk::Format::eB8G8R8A8Srgb: frame_format = vk::Format::eB8G8R8A8Unorm; break;
|
|
default: break;
|
|
}
|
|
frame->Configure(m_impl->window.graphic_ctx,
|
|
{image.backing.extent.width, image.backing.extent.height},
|
|
frame_format);
|
|
frame->CopyFrom(buffer, image);
|
|
return *frame;
|
|
}
|
|
|
|
Presenter::Frame& Presenter::PrepareBlankFrame(uint32_t width, uint32_t height, bool opaque,
|
|
CommandBuffer* producer) {
|
|
KYTY_PROFILER_FUNCTION();
|
|
auto format = m_impl->frames.GetFormat();
|
|
auto* frame = m_impl->frames.Acquire();
|
|
Common::LockGuard render_lock(m_impl->renderer.GetMutex());
|
|
frame->Configure(m_impl->window.graphic_ctx, {width, height}, format);
|
|
vk::ClearColorValue clear {};
|
|
clear.float32[3] = opaque ? 1.0f : 0.0f;
|
|
if (producer != nullptr) {
|
|
EXIT_IF(producer->IsInvalid());
|
|
frame->Clear(*producer, clear);
|
|
} else {
|
|
if (frame->present_commands == nullptr) {
|
|
frame->present_commands =
|
|
std::make_unique<CommandBuffer>(m_impl->present_scheduler);
|
|
}
|
|
auto& command = *frame->present_commands;
|
|
command.WaitForFenceAndReset();
|
|
command.Begin();
|
|
frame->Clear(command, clear);
|
|
command.End();
|
|
command.Execute();
|
|
}
|
|
return *frame;
|
|
}
|
|
|
|
Presenter::Frame* Presenter::PrepareLastFrame() {
|
|
return m_impl->frames.AcquireLast();
|
|
}
|
|
|
|
bool Presenter::IsGuestPaused() const noexcept {
|
|
return m_impl->window.loop.paused.load(std::memory_order_acquire);
|
|
}
|
|
|
|
RenderContext& Presenter::Renderer() const noexcept {
|
|
return m_impl->renderer;
|
|
}
|
|
|
|
void Presenter::Present(Frame& frame, bool reuse) {
|
|
KYTY_PROFILER_FUNCTION();
|
|
m_impl->frames.ValidateForPresent(&frame, reuse);
|
|
|
|
auto& window = m_impl->window;
|
|
if (window.window_hidden) {
|
|
#if defined(__APPLE__)
|
|
// AppKit traps if a window is shown off the main thread; marshal and wait so the
|
|
// swapchain below is recreated against a visible window.
|
|
window.RunOnMainThread(
|
|
[&window] {
|
|
window.UpdateIcon();
|
|
SDL_ShowWindow(window.window);
|
|
},
|
|
true);
|
|
#else
|
|
window.UpdateIcon();
|
|
|
|
SDL_ShowWindow(window.window);
|
|
#endif
|
|
|
|
window.window_hidden = false;
|
|
m_impl->RecoverSwapchain(Swapchain::Status::Recreate);
|
|
}
|
|
|
|
auto& swapchain = m_impl->swapchain;
|
|
for (uint32_t attempt = 0; attempt < 2; attempt++) {
|
|
auto status = swapchain.AcquireNextImage();
|
|
if (status != Swapchain::Status::Success) {
|
|
m_impl->RecoverSwapchain(status);
|
|
continue;
|
|
}
|
|
if (frame.present_commands == nullptr) {
|
|
frame.present_commands =
|
|
std::make_unique<CommandBuffer>(m_impl->present_scheduler);
|
|
}
|
|
{
|
|
Common::LockGuard render_lock(m_impl->renderer.GetMutex());
|
|
frame.present_commands->WaitForFenceAndReset();
|
|
auto& command = *frame.present_commands;
|
|
swapchain.RecordPresentCommands(command, frame.image);
|
|
swapchain.Submit(command);
|
|
}
|
|
status = swapchain.Present();
|
|
if (status != Swapchain::Status::Success) {
|
|
m_impl->RecoverSwapchain(status);
|
|
continue;
|
|
}
|
|
|
|
RenderDocOnPresent();
|
|
window.UpdateTitle();
|
|
m_impl->frames.Release(&frame, true);
|
|
return;
|
|
}
|
|
LOGF("Vulkan presentation retry exhausted; dropping frame\n");
|
|
m_impl->frames.Release(&frame, reuse);
|
|
}
|
|
|
|
void Presenter::Discard(Frame& frame) {
|
|
m_impl->frames.Release(&frame);
|
|
}
|
|
|
|
WindowContext::WindowContext() = default;
|
|
|
|
} // namespace Libs::Graphics
|