video_core: Apply texture filter to color surfaces (#1784)

This commit is contained in:
PabloMK7 2026-02-25 13:08:18 +01:00 committed by GitHub
parent 15bdd27b9c
commit b3fd0b6c89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -922,7 +922,8 @@ void Surface::Upload(const VideoCore::BufferTextureCopy& upload,
.src_rect = upload.texture_rect,
.dst_rect = upload.texture_rect * res_scale,
};
if (type != SurfaceType::Texture || !runtime->blit_helper.Filter(*this, blit)) {
if ((type != SurfaceType::Color && type != SurfaceType::Texture) ||
!runtime->blit_helper.Filter(*this, blit)) {
BlitScale(blit, true);
}
}