mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
rsx: Fixup for uninitialized surface antialiasing mode
This commit is contained in:
parent
45a13d0319
commit
cb78522620
|
|
@ -872,6 +872,9 @@ namespace rsx
|
|||
}
|
||||
|
||||
#ifndef INCOMPLETE_SURFACE_CACHE_IMPL
|
||||
// TODO: This can be done better after refactoring
|
||||
new_surface->write_aa_mode = antialias;
|
||||
|
||||
// Check if old_surface is 'new' and avoid intersection
|
||||
if (old_surface && old_surface->last_use_tag >= write_tag)
|
||||
{
|
||||
|
|
@ -1001,6 +1004,9 @@ namespace rsx
|
|||
}
|
||||
|
||||
#ifndef INCOMPLETE_SURFACE_CACHE_IMPL
|
||||
// TODO: Forward this to the management functions
|
||||
new_surface->write_aa_mode = antialias;
|
||||
|
||||
// Check if old_surface is 'new' and avoid intersection
|
||||
if (old_surface && old_surface->last_use_tag >= write_tag)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue