16 changed files with 798 additions and 136 deletions
-
1src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/BooleanSetting.kt
-
9src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/view/SettingsItem.kt
-
1src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/ui/SettingsFragmentPresenter.kt
-
2src/android/app/src/main/res/values/strings.xml
-
4src/common/settings.h
-
9src/core/hle/kernel/k_process.h
-
13src/core/hle/service/am/service/common_state_getter.cpp
-
1src/core/hle/service/am/service/common_state_getter.h
-
38src/core/hle/service/sm/sm_controller.cpp
-
1src/core/hle/service/sm/sm_controller.h
-
39src/core/loader/nca.cpp
-
355src/core/memory.cpp
-
9src/video_core/renderer_vulkan/renderer_vulkan.cpp
-
10src/video_core/renderer_vulkan/renderer_vulkan.h
-
45src/video_core/vulkan_common/vulkan_device.cpp
-
231src/video_core/vulkan_common/vulkan_raii.h
@ -0,0 +1,231 @@ |
|||
// SPDX-FileCopyrightText: Copyright 2025 yuzu Emulator Project |
|||
// SPDX-License-Identifier: GPL-2.0-or-later |
|||
|
|||
#pragma once |
|||
|
|||
#include <memory> |
|||
#include <utility> |
|||
#include <functional> |
|||
#include <string> |
|||
|
|||
#include "common/logging/log.h" |
|||
|
|||
#include "video_core/vulkan_common/vulkan_wrapper.h" |
|||
|
|||
namespace Vulkan { |
|||
|
|||
/** |
|||
* RAII wrapper for Vulkan resources. |
|||
* Automatically manages the lifetime of Vulkan objects using RAII principles. |
|||
*/ |
|||
template <typename T, typename Owner = void*, typename Dispatch = vk::InstanceDispatch> |
|||
class VulkanRaii { |
|||
public: |
|||
using DeleterFunc = std::function<void(T, const Dispatch&)>; |
|||
|
|||
// Default constructor - creates a null handle |
|||
VulkanRaii() : handle{}, deleter{}, dispatch{} {} |
|||
|
|||
// Constructor with handle and deleter |
|||
VulkanRaii(T handle_, DeleterFunc deleter_, const Dispatch& dispatch_, const char* resource_name = "Vulkan resource") |
|||
: handle{handle_}, deleter{std::move(deleter_)}, dispatch{dispatch_} { |
|||
LOG_DEBUG(Render_Vulkan, "RAII wrapper created for {}", resource_name); |
|||
} |
|||
|
|||
// Move constructor |
|||
VulkanRaii(VulkanRaii&& other) noexcept |
|||
: handle{std::exchange(other.handle, VK_NULL_HANDLE)}, |
|||
deleter{std::move(other.deleter)}, |
|||
dispatch{other.dispatch} { |
|||
} |
|||
|
|||
// Move assignment |
|||
VulkanRaii& operator=(VulkanRaii&& other) noexcept { |
|||
if (this != &other) { |
|||
cleanup(); |
|||
handle = std::exchange(other.handle, VK_NULL_HANDLE); |
|||
deleter = std::move(other.deleter); |
|||
dispatch = other.dispatch; |
|||
} |
|||
return *this; |
|||
} |
|||
|
|||
// Destructor - automatically cleans up the resource |
|||
~VulkanRaii() { |
|||
cleanup(); |
|||
} |
|||
|
|||
// Disallow copying |
|||
VulkanRaii(const VulkanRaii&) = delete; |
|||
VulkanRaii& operator=(const VulkanRaii&) = delete; |
|||
|
|||
// Get the underlying handle |
|||
T get() const noexcept { |
|||
return handle; |
|||
} |
|||
|
|||
// Check if the handle is valid |
|||
bool valid() const noexcept { |
|||
return handle != VK_NULL_HANDLE; |
|||
} |
|||
|
|||
// Release ownership of the handle without destroying it |
|||
T release() noexcept { |
|||
return std::exchange(handle, VK_NULL_HANDLE); |
|||
} |
|||
|
|||
// Reset the handle (destroying the current one if it exists) |
|||
void reset(T new_handle = VK_NULL_HANDLE, DeleterFunc new_deleter = {}) { |
|||
cleanup(); |
|||
handle = new_handle; |
|||
deleter = std::move(new_deleter); |
|||
} |
|||
|
|||
// Implicit conversion to handle type |
|||
operator T() const noexcept { |
|||
return handle; |
|||
} |
|||
|
|||
// Dereference operator for pointer-like access |
|||
T operator->() const noexcept { |
|||
return handle; |
|||
} |
|||
|
|||
private: |
|||
// Optimized cleanup function |
|||
void cleanup() noexcept { |
|||
if (handle != VK_NULL_HANDLE && deleter) { |
|||
deleter(handle, dispatch); |
|||
handle = VK_NULL_HANDLE; |
|||
} |
|||
} |
|||
|
|||
T handle; |
|||
DeleterFunc deleter; |
|||
Dispatch dispatch; |
|||
}; |
|||
|
|||
// Common type aliases for Vulkan RAII wrappers with clearer names |
|||
using ManagedInstance = VulkanRaii<VkInstance, void*, vk::InstanceDispatch>; |
|||
using ManagedDevice = VulkanRaii<VkDevice, void*, vk::DeviceDispatch>; |
|||
using ManagedSurface = VulkanRaii<VkSurfaceKHR, VkInstance, vk::InstanceDispatch>; |
|||
using ManagedSwapchain = VulkanRaii<VkSwapchainKHR, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedCommandPool = VulkanRaii<VkCommandPool, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedBuffer = VulkanRaii<VkBuffer, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedImage = VulkanRaii<VkImage, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedImageView = VulkanRaii<VkImageView, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedSampler = VulkanRaii<VkSampler, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedShaderModule = VulkanRaii<VkShaderModule, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedPipeline = VulkanRaii<VkPipeline, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedPipelineLayout = VulkanRaii<VkPipelineLayout, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedDescriptorSetLayout = VulkanRaii<VkDescriptorSetLayout, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedDescriptorPool = VulkanRaii<VkDescriptorPool, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedSemaphore = VulkanRaii<VkSemaphore, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedFence = VulkanRaii<VkFence, VkDevice, vk::DeviceDispatch>; |
|||
using ManagedDebugUtilsMessenger = VulkanRaii<VkDebugUtilsMessengerEXT, VkInstance, vk::InstanceDispatch>; |
|||
|
|||
// Helper functions to create RAII wrappers |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan instance |
|||
*/ |
|||
inline ManagedInstance MakeManagedInstance(const vk::Instance& instance, const vk::InstanceDispatch& dispatch) { |
|||
auto deleter = [](VkInstance handle, const vk::InstanceDispatch& dld) { |
|||
dld.vkDestroyInstance(handle, nullptr); |
|||
}; |
|||
return ManagedInstance(*instance, deleter, dispatch, "VkInstance"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan device |
|||
*/ |
|||
inline ManagedDevice MakeManagedDevice(const vk::Device& device, const vk::DeviceDispatch& dispatch) { |
|||
auto deleter = [](VkDevice handle, const vk::DeviceDispatch& dld) { |
|||
dld.vkDestroyDevice(handle, nullptr); |
|||
}; |
|||
return ManagedDevice(*device, deleter, dispatch, "VkDevice"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan surface |
|||
*/ |
|||
inline ManagedSurface MakeManagedSurface(const vk::SurfaceKHR& surface, const vk::Instance& instance, const vk::InstanceDispatch& dispatch) { |
|||
auto deleter = [instance_ptr = *instance](VkSurfaceKHR handle, const vk::InstanceDispatch& dld) { |
|||
dld.vkDestroySurfaceKHR(instance_ptr, handle, nullptr); |
|||
}; |
|||
return ManagedSurface(*surface, deleter, dispatch, "VkSurfaceKHR"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan debug messenger |
|||
*/ |
|||
inline ManagedDebugUtilsMessenger MakeManagedDebugUtilsMessenger(const vk::DebugUtilsMessenger& messenger, |
|||
const vk::Instance& instance, |
|||
const vk::InstanceDispatch& dispatch) { |
|||
auto deleter = [instance_ptr = *instance](VkDebugUtilsMessengerEXT handle, const vk::InstanceDispatch& dld) { |
|||
dld.vkDestroyDebugUtilsMessengerEXT(instance_ptr, handle, nullptr); |
|||
}; |
|||
return ManagedDebugUtilsMessenger(*messenger, deleter, dispatch, "VkDebugUtilsMessengerEXT"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan swapchain |
|||
*/ |
|||
inline ManagedSwapchain MakeManagedSwapchain(VkSwapchainKHR swapchain_handle, VkDevice device_handle, const vk::DeviceDispatch& dispatch) { |
|||
auto deleter = [device_handle](VkSwapchainKHR handle, const vk::DeviceDispatch& dld) { |
|||
dld.vkDestroySwapchainKHR(device_handle, handle, nullptr); |
|||
}; |
|||
return ManagedSwapchain(swapchain_handle, deleter, dispatch, "VkSwapchainKHR"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan buffer |
|||
*/ |
|||
inline ManagedBuffer MakeManagedBuffer(VkBuffer buffer_handle, VkDevice device_handle, const vk::DeviceDispatch& dispatch) { |
|||
auto deleter = [device_handle](VkBuffer handle, const vk::DeviceDispatch& dld) { |
|||
dld.vkDestroyBuffer(device_handle, handle, nullptr); |
|||
}; |
|||
return ManagedBuffer(buffer_handle, deleter, dispatch, "VkBuffer"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan image |
|||
*/ |
|||
inline ManagedImage MakeManagedImage(VkImage image_handle, VkDevice device_handle, const vk::DeviceDispatch& dispatch) { |
|||
auto deleter = [device_handle](VkImage handle, const vk::DeviceDispatch& dld) { |
|||
dld.vkDestroyImage(device_handle, handle, nullptr); |
|||
}; |
|||
return ManagedImage(image_handle, deleter, dispatch, "VkImage"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan image view |
|||
*/ |
|||
inline ManagedImageView MakeManagedImageView(VkImageView view_handle, VkDevice device_handle, const vk::DeviceDispatch& dispatch) { |
|||
auto deleter = [device_handle](VkImageView handle, const vk::DeviceDispatch& dld) { |
|||
dld.vkDestroyImageView(device_handle, handle, nullptr); |
|||
}; |
|||
return ManagedImageView(view_handle, deleter, dispatch, "VkImageView"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan semaphore |
|||
*/ |
|||
inline ManagedSemaphore MakeManagedSemaphore(VkSemaphore semaphore_handle, VkDevice device_handle, const vk::DeviceDispatch& dispatch) { |
|||
auto deleter = [device_handle](VkSemaphore handle, const vk::DeviceDispatch& dld) { |
|||
dld.vkDestroySemaphore(device_handle, handle, nullptr); |
|||
}; |
|||
return ManagedSemaphore(semaphore_handle, deleter, dispatch, "VkSemaphore"); |
|||
} |
|||
|
|||
/** |
|||
* Creates an RAII wrapper for a Vulkan fence |
|||
*/ |
|||
inline ManagedFence MakeManagedFence(VkFence fence_handle, VkDevice device_handle, const vk::DeviceDispatch& dispatch) { |
|||
auto deleter = [device_handle](VkFence handle, const vk::DeviceDispatch& dld) { |
|||
dld.vkDestroyFence(device_handle, handle, nullptr); |
|||
}; |
|||
return ManagedFence(fence_handle, deleter, dispatch, "VkFence"); |
|||
} |
|||
|
|||
} // namespace Vulkan |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue