mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
vk: Remove an overzealous assert
This commit is contained in:
parent
17df6c8878
commit
d59c449ff6
1 changed files with 2 additions and 2 deletions
|
@ -260,9 +260,9 @@ namespace vk
|
||||||
|
|
||||||
if (final_dst->width() == subres.width_in_block && final_dst->height() == subres.height_in_block)
|
if (final_dst->width() == subres.width_in_block && final_dst->height() == subres.height_in_block)
|
||||||
{
|
{
|
||||||
// Only possible if MSAA is enabled with 100% resolution scale.
|
// Possible if MSAA is enabled with 100% resolution scale or
|
||||||
|
// surface dimensions are less than resolution scale threshold and no MSAA.
|
||||||
// Writethrough.
|
// Writethrough.
|
||||||
verify(HERE), g_cfg.video.resolution_scale_percent == 100 && samples() > 1;
|
|
||||||
content = final_dst;
|
content = final_dst;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue