vk: Remove an overzealous assert

This commit is contained in:
kd-11 2020-02-06 23:20:14 +03:00 committed by kd-11
parent 17df6c8878
commit d59c449ff6
1 changed files with 2 additions and 2 deletions

View File

@ -260,9 +260,9 @@ namespace vk
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.
verify(HERE), g_cfg.video.resolution_scale_percent == 100 && samples() > 1;
content = final_dst;
}
else