From 77dd5d7d10827fe6a2b01bdee81527ab8295d172 Mon Sep 17 00:00:00 2001 From: DH Date: Sat, 4 Oct 2025 18:55:45 +0300 Subject: [PATCH] rsx: add missed includes for android --- rpcs3/Emu/RSX/VK/VulkanAPI.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VulkanAPI.h b/rpcs3/Emu/RSX/VK/VulkanAPI.h index 87f607711..ff3931e32 100644 --- a/rpcs3/Emu/RSX/VK/VulkanAPI.h +++ b/rpcs3/Emu/RSX/VK/VulkanAPI.h @@ -29,6 +29,10 @@ constexpr VkDriverId VK_DRIVER_ID_MESA_HONEYKRISP = static_cast(26); #endif #ifdef ANDROID +#include +#include +#include + namespace vk { template @@ -47,7 +51,7 @@ namespace vk class symbol_cache { - std::vector> registered_symbols; + std::vector> registered_symbols; public: void initialize();