early-access version 1935
This commit is contained in:
parent
fd70c224d1
commit
b6ccebf4de
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1934.
|
This is the source code for early-access 1935.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -24,10 +24,10 @@ struct RenderTargets {
|
||||||
return std::ranges::any_of(color_buffer_ids, contains) || contains(depth_buffer_id);
|
return std::ranges::any_of(color_buffer_ids, contains) || contains(depth_buffer_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::array<ImageViewId, NUM_RT> color_buffer_ids;
|
std::array<ImageViewId, NUM_RT> color_buffer_ids{};
|
||||||
ImageViewId depth_buffer_id;
|
ImageViewId depth_buffer_id{};
|
||||||
std::array<u8, NUM_RT> draw_buffers{};
|
std::array<u8, NUM_RT> draw_buffers{};
|
||||||
Extent2D size;
|
Extent2D size{};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace VideoCommon
|
} // namespace VideoCommon
|
||||||
|
|
Loading…
Reference in a new issue