Commit f3f6f746 authored by mathp's avatar mathp Committed by Commit bot

Increase output quality of scaler from FAST to GOOD

The android implementation already uses the GOOD quality, rather than FAST.

This positively affects the quality of the thumbnails shown on the New Tab Page.

Description of GOOD, from code comments:
Bilinear upscale + N * 50% bilinear downscales.
This is still fast enough for most purposes and
Image quality is nearly as good as the BEST option.

BUG=481978

Review URL: https://codereview.chromium.org/1115433002

Cr-Commit-Position: refs/heads/master@{#327377}
parent e07cb973
...@@ -621,7 +621,7 @@ void DelegatedFrameHost::PrepareTextureCopyOutputResult( ...@@ -621,7 +621,7 @@ void DelegatedFrameHost::PrepareTextureCopyOutputResult(
base::Passed(&release_callback), base::Passed(&release_callback),
base::Passed(&bitmap), base::Passed(&bitmap),
base::Passed(&bitmap_pixels_lock)), base::Passed(&bitmap_pixels_lock)),
GLHelper::SCALER_QUALITY_FAST); GLHelper::SCALER_QUALITY_GOOD);
} }
// static // static
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment