From 834f8f7b5cb9b5d9e437c7a3935bfdcc236c422a Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sun, 28 May 2023 20:59:02 -0500 Subject: VideoBackends: add support to allow rendering to multiple output textures --- Source/Core/VideoCommon/RenderState.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Source/Core/VideoCommon/RenderState.cpp') diff --git a/Source/Core/VideoCommon/RenderState.cpp b/Source/Core/VideoCommon/RenderState.cpp index 0860488b8a..ec010756ba 100644 --- a/Source/Core/VideoCommon/RenderState.cpp +++ b/Source/Core/VideoCommon/RenderState.cpp @@ -453,6 +453,7 @@ FramebufferState GetColorFramebufferState(AbstractTextureFormat format) state.depth_texture_format = AbstractTextureFormat::Undefined; state.per_sample_shading = false; state.samples = 1; + state.additional_color_attachment_count = 0; return state; } -- cgit v1.2.3