mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 11:19:58 +00:00
Merge pull request #6749 from lioncash/rtarget
render_target: Add missing initializer for size extent
This commit is contained in:
commit
92887a65f0
1 changed files with 3 additions and 3 deletions
|
@ -24,10 +24,10 @@ struct RenderTargets {
|
|||
return std::ranges::any_of(color_buffer_ids, contains) || contains(depth_buffer_id);
|
||||
}
|
||||
|
||||
std::array<ImageViewId, NUM_RT> color_buffer_ids;
|
||||
ImageViewId depth_buffer_id;
|
||||
std::array<ImageViewId, NUM_RT> color_buffer_ids{};
|
||||
ImageViewId depth_buffer_id{};
|
||||
std::array<u8, NUM_RT> draw_buffers{};
|
||||
Extent2D size;
|
||||
Extent2D size{};
|
||||
};
|
||||
|
||||
} // namespace VideoCommon
|
||||
|
|
Loading…
Reference in a new issue