mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
cellVideoOut: support interlaced scan modes
This commit is contained in:
parent
8e5fec785e
commit
e164d462b4
13 changed files with 203 additions and 68 deletions
|
|
@ -728,7 +728,14 @@ namespace rsx
|
|||
|
||||
void avconf::save(utils::serial& ar)
|
||||
{
|
||||
ar(*this);
|
||||
[[maybe_unused]] const s32 version = GET_OR_USE_SERIALIZATION_VERSION(ar.is_writing(), rsx);
|
||||
|
||||
ar(stereo_mode, format, aspect, resolution_id, scanline_pitch, gamma, resolution_x, resolution_y, state);
|
||||
|
||||
if (ar.is_writing() || version >= 3)
|
||||
{
|
||||
ar(scan_mode);
|
||||
}
|
||||
}
|
||||
|
||||
void thread::capture_frame(const std::string &name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue