mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
rsx: Add option to toggle MSAA
This commit is contained in:
parent
ea8409dcfd
commit
bca5f94b3f
11 changed files with 99 additions and 29 deletions
|
@ -2889,18 +2889,16 @@ namespace rsx
|
|||
}
|
||||
}
|
||||
|
||||
if (src_is_render_target &&
|
||||
dynamic_cast<decltype(src_subres.surface)>(vram_texture) != nullptr)
|
||||
if (src_is_render_target)
|
||||
{
|
||||
// The resource is of surface type; possibly disabled AA emulation
|
||||
src_subres.surface->transform_samples_to_pixels(src_area);
|
||||
src_subres.surface->transform_blit_coordinates(rsx::surface_access::transfer, src_area);
|
||||
}
|
||||
|
||||
if (dst_is_render_target &&
|
||||
dynamic_cast<decltype(dst_subres.surface)>(dest_texture) != nullptr)
|
||||
if (dst_is_render_target)
|
||||
{
|
||||
// The resource is of surface type; possibly disabled AA emulation
|
||||
dst_subres.surface->transform_samples_to_pixels(dst_area);
|
||||
dst_subres.surface->transform_blit_coordinates(rsx::surface_access::transfer, dst_area);
|
||||
}
|
||||
|
||||
typeless_info.analyse();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue