OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "gm.h" | 8 #include "gm.h" |
9 | 9 |
10 #include "SkPictureImageFilter.h" | 10 #include "SkPictureImageFilter.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 SkPaint paint; | 29 SkPaint paint; |
30 paint.setAntiAlias(true); | 30 paint.setAntiAlias(true); |
31 sk_tool_utils::set_portable_typeface(&paint); | 31 sk_tool_utils::set_portable_typeface(&paint); |
32 paint.setColor(0xFFFFFFFF); | 32 paint.setColor(0xFFFFFFFF); |
33 paint.setTextSize(SkIntToScalar(96)); | 33 paint.setTextSize(SkIntToScalar(96)); |
34 const char* str = "e"; | 34 const char* str = "e"; |
35 canvas->drawText(str, strlen(str), SkIntToScalar(20), SkIntToScalar(70),
paint); | 35 canvas->drawText(str, strlen(str), SkIntToScalar(20), SkIntToScalar(70),
paint); |
36 fPicture.reset(recorder.endRecording()); | 36 fPicture.reset(recorder.endRecording()); |
37 } | 37 } |
38 | 38 |
39 virtual SkISize onISize() SK_OVERRIDE { return SkISize::Make(400, 300); } | 39 virtual SkISize onISize() SK_OVERRIDE { return SkISize::Make(600, 300); } |
40 | 40 |
41 virtual void onOnceBeforeDraw() SK_OVERRIDE { | 41 virtual void onOnceBeforeDraw() SK_OVERRIDE { |
42 this->makePicture(); | 42 this->makePicture(); |
43 } | 43 } |
44 | 44 |
45 static void fillRectFiltered(SkCanvas* canvas, const SkRect& clipRect, SkIma
geFilter* filter) { | 45 static void fillRectFiltered(SkCanvas* canvas, const SkRect& clipRect, SkIma
geFilter* filter) { |
46 SkPaint paint; | 46 SkPaint paint; |
47 paint.setImageFilter(filter); | 47 paint.setImageFilter(filter); |
48 canvas->save(); | 48 canvas->save(); |
49 canvas->clipRect(clipRect); | 49 canvas->clipRect(clipRect); |
50 canvas->drawPaint(paint); | 50 canvas->drawPaint(paint); |
51 canvas->restore(); | 51 canvas->restore(); |
52 } | 52 } |
53 | 53 |
54 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 54 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
55 canvas->clear(0x00000000); | 55 canvas->clear(0x00000000); |
56 { | 56 { |
57 SkRect srcRect = SkRect::MakeXYWH(20, 20, 30, 30); | 57 SkRect srcRect = SkRect::MakeXYWH(20, 20, 30, 30); |
58 SkRect emptyRect = SkRect::MakeXYWH(20, 20, 0, 0); | 58 SkRect emptyRect = SkRect::MakeXYWH(20, 20, 0, 0); |
59 SkRect bounds = SkRect::MakeXYWH(0, 0, 100, 100); | 59 SkRect bounds = SkRect::MakeXYWH(0, 0, 100, 100); |
60 SkAutoTUnref<SkPictureImageFilter> pictureSource( | 60 SkAutoTUnref<SkPictureImageFilter> pictureSource( |
61 SkPictureImageFilter::Create(fPicture)); | 61 SkPictureImageFilter::Create(fPicture)); |
62 SkAutoTUnref<SkPictureImageFilter> pictureSourceSrcRect( | 62 SkAutoTUnref<SkPictureImageFilter> pictureSourceSrcRect( |
63 SkPictureImageFilter::Create(fPicture, srcRect)); | 63 SkPictureImageFilter::Create(fPicture, srcRect)); |
64 SkAutoTUnref<SkPictureImageFilter> pictureSourceEmptyRect( | 64 SkAutoTUnref<SkPictureImageFilter> pictureSourceEmptyRect( |
65 SkPictureImageFilter::Create(fPicture, emptyRect)); | 65 SkPictureImageFilter::Create(fPicture, emptyRect)); |
66 SkAutoTUnref<SkPictureImageFilter> pictureSourceResampled( | 66 SkAutoTUnref<SkPictureImageFilter> pictureSourceResampled( |
67 SkPictureImageFilter::CreateForLocalSpace(fPicture, fPicture->cu
llRect())); | 67 SkPictureImageFilter::CreateForLocalSpace(fPicture, fPicture->cu
llRect(), |
| 68 SkPaint::kLow_FilterLevel)); |
| 69 SkAutoTUnref<SkPictureImageFilter> pictureSourcePixelated( |
| 70 SkPictureImageFilter::CreateForLocalSpace(fPicture, fPicture->cu
llRect(), |
| 71 SkPaint::kNone_FilterLevel)); |
68 | 72 |
69 canvas->save(); | 73 canvas->save(); |
70 // Draw the picture unscaled. | 74 // Draw the picture unscaled. |
71 fillRectFiltered(canvas, bounds, pictureSource); | 75 fillRectFiltered(canvas, bounds, pictureSource); |
72 canvas->translate(SkIntToScalar(100), 0); | 76 canvas->translate(SkIntToScalar(100), 0); |
73 | 77 |
74 // Draw an unscaled subset of the source picture. | 78 // Draw an unscaled subset of the source picture. |
75 fillRectFiltered(canvas, bounds, pictureSourceSrcRect); | 79 fillRectFiltered(canvas, bounds, pictureSourceSrcRect); |
76 canvas->translate(SkIntToScalar(100), 0); | 80 canvas->translate(SkIntToScalar(100), 0); |
77 | 81 |
78 // Draw the picture to an empty rect (should draw nothing). | 82 // Draw the picture to an empty rect (should draw nothing). |
79 fillRectFiltered(canvas, bounds, pictureSourceEmptyRect); | 83 fillRectFiltered(canvas, bounds, pictureSourceEmptyRect); |
80 canvas->translate(SkIntToScalar(100), 0); | 84 canvas->translate(SkIntToScalar(100), 0); |
81 | 85 |
82 canvas->restore(); | 86 canvas->restore(); |
83 | 87 |
84 // Draw the picture scaled | 88 // Draw the picture scaled |
85 canvas->translate(0, SkIntToScalar(100)); | 89 canvas->translate(0, SkIntToScalar(100)); |
86 canvas->scale(200 / srcRect.width(), 200 / srcRect.height()); | 90 canvas->scale(200 / srcRect.width(), 200 / srcRect.height()); |
87 canvas->translate(-srcRect.fLeft, -srcRect.fTop); | 91 canvas->translate(-srcRect.fLeft, -srcRect.fTop); |
88 fillRectFiltered(canvas, srcRect, pictureSource); | 92 fillRectFiltered(canvas, srcRect, pictureSource); |
89 | 93 |
90 // Draw the picture scaled, but rasterized at original resolution | 94 // Draw the picture scaled, but rasterized at original resolution |
91 canvas->translate(srcRect.width(), 0); | 95 canvas->translate(srcRect.width(), 0); |
92 fillRectFiltered(canvas, srcRect, pictureSourceResampled); | 96 fillRectFiltered(canvas, srcRect, pictureSourceResampled); |
| 97 |
| 98 // Draw the picture scaled, pixelated |
| 99 canvas->translate(srcRect.width(), 0); |
| 100 fillRectFiltered(canvas, srcRect, pictureSourcePixelated); |
93 } | 101 } |
94 } | 102 } |
95 | 103 |
96 // SkPictureImageFilter doesn't support serialization yet. | 104 // SkPictureImageFilter doesn't support serialization yet. |
97 virtual uint32_t onGetFlags() const SK_OVERRIDE { | 105 virtual uint32_t onGetFlags() const SK_OVERRIDE { |
98 return kSkipPicture_Flag | | 106 return kSkipPicture_Flag | |
99 kSkipPipe_Flag | | 107 kSkipPipe_Flag | |
100 kSkipPipeCrossProcess_Flag | | 108 kSkipPipeCrossProcess_Flag | |
101 kSkipTiled_Flag | | 109 kSkipTiled_Flag | |
102 kSkipScaledReplay_Flag; | 110 kSkipScaledReplay_Flag; |
103 } | 111 } |
104 | 112 |
105 private: | 113 private: |
106 SkAutoTUnref<SkPicture> fPicture; | 114 SkAutoTUnref<SkPicture> fPicture; |
107 typedef GM INHERITED; | 115 typedef GM INHERITED; |
108 }; | 116 }; |
109 | 117 |
110 /////////////////////////////////////////////////////////////////////////////// | 118 /////////////////////////////////////////////////////////////////////////////// |
111 | 119 |
112 DEF_GM( return new PictureImageFilterGM; ) | 120 DEF_GM( return new PictureImageFilterGM; ) |
OLD | NEW |