summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/texture_cache/render_targets.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/render_targets.h b/src/video_core/texture_cache/render_targets.h
index 9b9544b07..0cb227d69 100644
--- a/src/video_core/texture_cache/render_targets.h
+++ b/src/video_core/texture_cache/render_targets.h
@@ -24,10 +24,10 @@ struct RenderTargets {
24 return std::ranges::any_of(color_buffer_ids, contains) || contains(depth_buffer_id); 24 return std::ranges::any_of(color_buffer_ids, contains) || contains(depth_buffer_id);
25 } 25 }
26 26
27 std::array<ImageViewId, NUM_RT> color_buffer_ids; 27 std::array<ImageViewId, NUM_RT> color_buffer_ids{};
28 ImageViewId depth_buffer_id; 28 ImageViewId depth_buffer_id{};
29 std::array<u8, NUM_RT> draw_buffers{}; 29 std::array<u8, NUM_RT> draw_buffers{};
30 Extent2D size; 30 Extent2D size{};
31}; 31};
32 32
33} // namespace VideoCommon 33} // namespace VideoCommon