diff options
author | mtklein <mtklein@google.com> | 2015-06-24 15:14:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-24 15:14:48 -0700 |
commit | c0bdecb920a957665f66adefd3f3fb865e32e5d0 (patch) | |
tree | 055fac27d0c76067ec1f2271dd9a5879450c0b18 /dm | |
parent | b60c3f8291529303299262dba19b1a896060bd2d (diff) |
Revert of Switch SkJpegCode to libjpeg-turbo (patchset #11 id:540001 of https://codereview.chromium.org/1180983002/)
Reason for revert:
https://uberchromegw.corp.google.com/i/client.skia.compile/builders/Build-Ubuntu-GCC-MipsDSP2-Debug-Android/builds/1136/steps/build%20most/logs/stdio
Original issue's description:
> Add libjpeg-turbo library (depends on yasm)
> Mangle external function names to avoid conflict with libjpeg
> Take advantage of direct color conversion (RGBA, BGRA, 565)
> Prepare to use jpeg_skip_scanlines (when it is upstreamed)
>
> BUG=skia:
>
> Committed: https://skia.googlesource.com/skia/+/b60c3f8291529303299262dba19b1a896060bd2d
TBR=scroggo@google.com,djsollen@google.com,emmaleer@google.com,msarett@google.com
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Review URL: https://codereview.chromium.org/1199253006
Diffstat (limited to 'dm')
-rw-r--r-- | dm/DM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,7 +209,7 @@ static void push_codec_srcs(Path path) { // TODO (msarett): Add more scaling tests as we implement more flexible scaling. // TODO (msarett): Implement scaling tests for SkImageDecoder in order to compare with these // tests. SkImageDecoder supports downscales by integer factors. - const float scales[] = { 0.125f, 0.25f, 0.375f, 0.5f, 0.625f, 0.750f, 0.875f, 1.0f }; + const float scales[] = { 0.125f, 0.25f, 0.5f, 1.0f }; for (float scale : scales) { // Build additional test cases for images that decode natively to non-canvas types |