diff options
author | senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-05-30 20:50:56 +0000 |
---|---|---|
committer | senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-05-30 20:50:56 +0000 |
commit | 97f5fc651956287e78e35934cf62b9e1b45b4f6c (patch) | |
tree | 9aed84527f56452f05442457830ac30f0ef2ba6d /tests | |
parent | 1fd263edb3bac44c8921bd34590bbc57fb348001 (diff) |
Allow SkPictureImageFilter to be serialized when not run cross-process.
Picture serialization is not yet hardened, but it turns out we do need
serialization of SkPictureImageFilter for deferred SVG-on-SVG filters,
since the SkPaints (and thus the SkImageFilters) are serialized by
SkPictureRecord. However, deferred filters are always drawn in the
same process, so we can safely serialize them in this case. We do this
by turning the compile-time check for
SK_ALLOW_PICTUREIMAGEFILTER_SERIALIZATION to a runtime check for
isCrossProcess().
The image filter fuzzer sample was also modified to enable fuzzing
of basic picture image filters (the code had rotted a bit, being behind
an #ifdef that no one sets).
BUG=375162
R=sugoi@google.com
Review URL: https://codereview.chromium.org/311443003
git-svn-id: http://skia.googlecode.com/svn/trunk@15008 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ImageFilterTest.cpp | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/ImageFilterTest.cpp b/tests/ImageFilterTest.cpp index 35585ac5f0..0c4d0766b5 100644 --- a/tests/ImageFilterTest.cpp +++ b/tests/ImageFilterTest.cpp @@ -17,6 +17,7 @@ #include "SkDisplacementMapEffect.h" #include "SkDropShadowImageFilter.h" #include "SkFlattenableBuffers.h" +#include "SkFlattenableSerialization.h" #include "SkGradientShader.h" #include "SkLightingImageFilter.h" #include "SkMatrixConvolutionImageFilter.h" @@ -493,6 +494,66 @@ DEF_TEST(ImageFilterMatrixTest, reporter) { canvas.drawPicture(*picture); } +DEF_TEST(ImageFilterPictureImageFilterTest, reporter) { + + SkRTreeFactory factory; + SkPictureRecorder recorder; + SkCanvas* recordingCanvas = recorder.beginRecording(1, 1, &factory, 0); + + // Create an SkPicture which simply draws a green 1x1 rectangle. + SkPaint greenPaint; + greenPaint.setColor(SK_ColorGREEN); + recordingCanvas->drawRect(SkRect::Make(SkIRect::MakeWH(1, 1)), greenPaint); + SkAutoTUnref<SkPicture> picture(recorder.endRecording()); + + // Wrap that SkPicture in an SkPictureImageFilter. + SkAutoTUnref<SkImageFilter> imageFilter( + SkPictureImageFilter::Create(picture.get())); + + // Check that SkPictureImageFilter successfully serializes its contained + // SkPicture when not in cross-process mode. + SkPaint paint; + paint.setImageFilter(imageFilter.get()); + SkPictureRecorder outerRecorder; + SkCanvas* outerCanvas = outerRecorder.beginRecording(1, 1, &factory, 0); + SkPaint redPaintWithFilter; + redPaintWithFilter.setColor(SK_ColorRED); + redPaintWithFilter.setImageFilter(imageFilter.get()); + outerCanvas->drawRect(SkRect::Make(SkIRect::MakeWH(1, 1)), redPaintWithFilter); + SkAutoTUnref<SkPicture> outerPicture(outerRecorder.endRecording()); + + SkBitmap bitmap; + bitmap.allocN32Pixels(1, 1); + SkBitmapDevice device(bitmap); + SkCanvas canvas(&device); + + // The result here should be green, since the filter replaces the primitive's red interior. + canvas.clear(0x0); + canvas.drawPicture(*outerPicture); + uint32_t pixel = *bitmap.getAddr32(0, 0); + REPORTER_ASSERT(reporter, pixel == SK_ColorGREEN); + + // Check that, for now, SkPictureImageFilter does not serialize or + // deserialize its contained picture when the filter is serialized + // cross-process. Do this by "laundering" it through SkValidatingReadBuffer. + SkAutoTUnref<SkData> data(SkValidatingSerializeFlattenable(imageFilter.get())); + SkAutoTUnref<SkFlattenable> flattenable(SkValidatingDeserializeFlattenable( + data->data(), data->size(), SkImageFilter::GetFlattenableType())); + SkImageFilter* unflattenedFilter = static_cast<SkImageFilter*>(flattenable.get()); + + redPaintWithFilter.setImageFilter(unflattenedFilter); + SkPictureRecorder crossProcessRecorder; + SkCanvas* crossProcessCanvas = crossProcessRecorder.beginRecording(1, 1, &factory, 0); + crossProcessCanvas->drawRect(SkRect::Make(SkIRect::MakeWH(1, 1)), redPaintWithFilter); + SkAutoTUnref<SkPicture> crossProcessPicture(crossProcessRecorder.endRecording()); + + canvas.clear(0x0); + canvas.drawPicture(*crossProcessPicture); + pixel = *bitmap.getAddr32(0, 0); + // The result here should not be green, since the filter draws nothing. + REPORTER_ASSERT(reporter, pixel != SK_ColorGREEN); +} + DEF_TEST(ImageFilterEmptySaveLayerTest, reporter) { // Even when there's an empty saveLayer()/restore(), ensure that an image |