From c2247db7c1cb08dc0129fb9b02a60860d8ea4979 Mon Sep 17 00:00:00 2001 From: chrelliott978 Date: Tue, 6 Jan 2026 01:19:31 +0100 Subject: [PATCH] Update src/shader_recompiler/runtime_info.h changes color format type for moltenVK and includes vulkan_core.h --- src/shader_recompiler/runtime_info.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shader_recompiler/runtime_info.h b/src/shader_recompiler/runtime_info.h index c1822b8d2f..5881657de1 100644 --- a/src/shader_recompiler/runtime_info.h +++ b/src/shader_recompiler/runtime_info.h @@ -7,6 +7,7 @@ #include #include #include +#include #include "common/common_types.h" #include "shader_recompiler/varying_state.h" @@ -101,7 +102,7 @@ struct RuntimeInfo { /// Use storage buffers instead of global pointers on GLASM bool glasm_use_storage_buffers{}; bool is_moltenvk{}; - std::array color_formats{}; + std::array color_formats{}; //for color format change /// Transform feedback state for each varying std::array xfb_varyings{}; u32 xfb_count{0};