diff options
author | senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-24 22:19:24 +0000 |
---|---|---|
committer | senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-24 22:19:24 +0000 |
commit | 194d775edcf5fa6e82098a97ad53018d70db1155 (patch) | |
tree | 1398faf08e7031a1338d5ce2e145e7a5b6e1a186 /gyp | |
parent | 91673aafdf227675da15a8b7fabd38dbabdefbb7 (diff) |
This patch implements a crop rect for SkImageFilter. It has been implemented for SkColorFilterImageFilter and SkBlurImageFilter as examples.
In order to preserve the immutability of SkImageFilters, the crop rect is passed as a constructor parameter. If NULL (the default), the bounds of the input image are used, as before.
This also tightens up the boundary handling for SkImageBlurFilter on the GPU backend. Where we were previously using clamping semantics, we now respect decal semantics (so we don't oversaturate the edges). This brings the GPU and raster backends into closer alignment, but will require some new baselines for the GPU tests.
At a minimum, the following tests will need new baselines: imageblur, imagefiltersbase, imagefilterscropped, spritebitmap.
R=reed@google.com
Committed: https://code.google.com/p/skia/source/detail?r=10251
Review URL: https://codereview.chromium.org/19775006
git-svn-id: http://skia.googlecode.com/svn/trunk@10338 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/gmslides.gypi | 1 | ||||
-rw-r--r-- | gyp/tests.gyp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gyp/gmslides.gypi b/gyp/gmslides.gypi index 9d335496eb..46b1bd5bfc 100644 --- a/gyp/gmslides.gypi +++ b/gyp/gmslides.gypi @@ -63,6 +63,7 @@ '../gm/lighting.cpp', '../gm/image.cpp', '../gm/imagefiltersbase.cpp', + '../gm/imagefilterscropped.cpp', '../gm/imagefiltersgraph.cpp', '../gm/internal_links.cpp', '../gm/lcdtext.cpp', diff --git a/gyp/tests.gyp b/gyp/tests.gyp index 3f4cbe733e..a4ea32d948 100644 --- a/gyp/tests.gyp +++ b/gyp/tests.gyp @@ -69,6 +69,7 @@ '../tests/HashCacheTest.cpp', '../tests/ImageCacheTest.cpp', '../tests/ImageDecodingTest.cpp', + '../tests/ImageFilterTest.cpp', '../tests/InfRectTest.cpp', '../tests/LListTest.cpp', '../tests/LayerDrawLooperTest.cpp', |