Browse Source
[revert] Added linear filtering in texture blitting operations
eds-true-adreno-fixes
CamilleLaVey
2 weeks ago
committed by
Caio Oliveira
No known key found for this signature in database
GPG Key ID: AAAE6C7FD4186B0C
1 changed files with
0 additions and
1 deletions
-
src/video_core/renderer_vulkan/vk_texture_cache.cpp
|
|
@ -2128,7 +2128,6 @@ bool Image::BlitScaleHelper(bool scale_up) { |
|
|
/*supports_linear_filter=*/false, scale_up); |
|
|
/*supports_linear_filter=*/false, scale_up); |
|
|
return true; |
|
|
return true; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const bool supports_linear_filter = runtime->SupportsLinearFilter(info.format); |
|
|
const bool supports_linear_filter = runtime->SupportsLinearFilter(info.format); |
|
|
const bool is_bilinear = is_color && supports_linear_filter; |
|
|
const bool is_bilinear = is_color && supports_linear_filter; |
|
|
const auto filter_mode = is_bilinear ? Tegra::Engines::Fermi2D::Filter::Bilinear |
|
|
const auto filter_mode = is_bilinear ? Tegra::Engines::Fermi2D::Filter::Bilinear |
|
|
|