1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
cc / paint / paint_filter.h [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_PAINT_PAINT_FILTER_H_
#define CC_PAINT_PAINT_FILTER_H_
#include <optional>
#include <string>
#include <vector>
#include "base/check_op.h"
#include "base/containers/span.h"
#include "cc/paint/color_filter.h"
#include "cc/paint/paint_export.h"
#include "cc/paint/paint_image.h"
#include "cc/paint/paint_shader.h"
#include "third_party/abseil-cpp/absl/container/inlined_vector.h"
#include "third_party/skia/include/core/SkBlendMode.h"
#include "third_party/skia/include/core/SkColor.h"
#include "third_party/skia/include/core/SkImageFilter.h"
#include "third_party/skia/include/core/SkPoint3.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkRegion.h"
#include "third_party/skia/include/effects/SkImageFilters.h"
#include "ui/gfx/display_color_spaces.h"
namespace viz {
class SkiaRenderer;
class SoftwareRenderer;
} // namespace viz
namespace cc {
class ImageProvider;
class CC_PAINT_EXPORT PaintFilter : public SkRefCnt {
public:
enum class Type {
// For serialization purposes, we reserve one enum to indicate that there
// was no PaintFilter, ie the filter is "null".
kNullFilter,
kColorFilter,
kBlur,
kDropShadow,
kMagnifier,
kCompose,
kAlphaThreshold,
kXfermode,
kArithmetic,
kMatrixConvolution,
kDisplacementMapEffect,
kImage,
kPaintRecord,
kMerge,
kMorphology,
kOffset,
kTile,
kTurbulence,
kShader,
kMatrix,
kLightingDistant,
kLightingPoint,
kLightingSpot,
// Update the following if kLightingSpot is not the max anymore.
kMaxValue = kLightingSpot
};
enum class LightingType {
kDiffuse,
kSpecular,
// Update the following if kSpecular is not the max anymore.
kMaxValue = kSpecular
};
using MapDirection = SkImageFilter::MapDirection;
using CropRect = SkRect;
PaintFilter(const PaintFilter&) = delete;
~PaintFilter() override;
PaintFilter& operator=(const PaintFilter&) = delete;
static std::string TypeToString(Type type);
Type type() const { return type_; }
int count_inputs() const {
if (!cached_sk_filter_)
return 0;
return cached_sk_filter_->countInputs();
}
// Maps "forward" (to determine which pixels in a destination rect are
// affected by pixels in the source rect) or "backward" (to determine which
// pixels in the source affect the pixels in the destination rect). If `ctm`
// is not null, it should point to the CTM (2d scale components suffice) of
// the filter, and `rect` and the return value are in the device space.
// Otherwise the filter, `rect`, and the return value are in the same
// unspecified space, and the return value is guaranteed to cover all
// filtered pixels regardless of the CTM. Note: `ctm` must not be null if
// `direction` is kReverse_MapDirection.
SkIRect MapRect(const SkIRect& src,
const SkMatrix* ctm,
MapDirection direction) const;
const CropRect* GetCropRect() const;
bool has_discardable_images() const { return has_discardable_images_; }
ImageAnalysisState image_analysis_state() const {
return image_analysis_state_;
}
void set_has_animated_images(bool has_animated_images) {
image_analysis_state_ = has_animated_images
? ImageAnalysisState::kAnimatedImages
: ImageAnalysisState::kNoAnimatedImages;
}
virtual gfx::ContentColorUsage GetContentColorUsage() const = 0;
virtual size_t SerializedSize() const = 0;
// Returns a snaphot of the PaintFilter with images replaced using
// |image_provider|. Note that this may return the same filter if the filter
// has no images.
sk_sp<PaintFilter> SnapshotWithImages(ImageProvider* image_provider) const;
// Note that this operation is potentially slow. It also only compares things
// that are easy to compare. As an example, it doesn't compare equality of
// images, rather only its existence. This is meant to be used only by tests
// and fuzzers.
bool EqualsForTesting(const PaintFilter& other) const;
static std::vector<sk_sp<SkImageFilter>> ToSkImageFilters(
base::span<const sk_sp<PaintFilter>> filters);
protected:
PaintFilter(Type type,
const CropRect* crop_rect,
bool has_discardable_images);
static sk_sp<SkImageFilter> GetSkFilter(const PaintFilter* paint_filter) {
return paint_filter ? paint_filter->cached_sk_filter_ : nullptr;
}
const sk_sp<SkImageFilter>& cached_sk_filter() const {
return cached_sk_filter_;
}
virtual base::CheckedNumeric<size_t> BaseSerializedSize() const;
virtual sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const = 0;
// This should be created by each sub-class at construction time, to ensure
// that subsequent access to the filter is thread-safe.
sk_sp<SkImageFilter> cached_sk_filter_;
private:
// For cached skia filter access in SkPaint conversions. Mostly used during
// raster.
friend class PaintFlags;
friend class viz::SkiaRenderer;
friend class viz::SoftwareRenderer;
const Type type_;
std::optional<CropRect> crop_rect_;
const bool has_discardable_images_;
ImageAnalysisState image_analysis_state_ = ImageAnalysisState::kNoAnalysis;
};
// Base class of paint filter classes with one input filter.
class CC_PAINT_EXPORT OneInputPaintFilter : public PaintFilter {
public:
const sk_sp<PaintFilter>& input() const { return input_; }
gfx::ContentColorUsage GetContentColorUsage() const final;
protected:
OneInputPaintFilter(Type type,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~OneInputPaintFilter() override;
base::CheckedNumeric<size_t> BaseSerializedSize() const final;
bool EqualsForTesting(const OneInputPaintFilter& other) const;
sk_sp<PaintFilter> input_;
};
// Base class of paint filter classes with two input filters.
class CC_PAINT_EXPORT TwoInputPaintFilter : public PaintFilter {
public:
gfx::ContentColorUsage GetContentColorUsage() const final;
protected:
TwoInputPaintFilter(Type type,
sk_sp<PaintFilter> first,
sk_sp<PaintFilter> second,
const CropRect* crop_rect = nullptr);
~TwoInputPaintFilter() override;
base::CheckedNumeric<size_t> BaseSerializedSize() const final;
bool EqualsForTesting(const TwoInputPaintFilter& other) const;
sk_sp<PaintFilter> first_;
sk_sp<PaintFilter> second_;
};
class CC_PAINT_EXPORT ColorFilterPaintFilter final
: public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kColorFilter;
ColorFilterPaintFilter(sk_sp<ColorFilter> color_filter,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~ColorFilterPaintFilter() override;
const sk_sp<ColorFilter>& color_filter() const { return color_filter_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const ColorFilterPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
sk_sp<ColorFilter> color_filter_;
};
class CC_PAINT_EXPORT BlurPaintFilter final : public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kBlur;
BlurPaintFilter(SkScalar sigma_x,
SkScalar sigma_y,
SkTileMode tile_mode,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~BlurPaintFilter() override;
SkScalar sigma_x() const { return sigma_x_; }
SkScalar sigma_y() const { return sigma_y_; }
SkTileMode tile_mode() const { return tile_mode_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const BlurPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkScalar sigma_x_;
SkScalar sigma_y_;
SkTileMode tile_mode_;
};
class CC_PAINT_EXPORT DropShadowPaintFilter final : public OneInputPaintFilter {
public:
enum class ShadowMode {
kDrawShadowAndForeground,
kDrawShadowOnly,
kMaxValue = kDrawShadowOnly
};
static constexpr Type kType = Type::kDropShadow;
DropShadowPaintFilter(SkScalar dx,
SkScalar dy,
SkScalar sigma_x,
SkScalar sigma_y,
SkColor4f color,
ShadowMode shadow_mode,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~DropShadowPaintFilter() override;
SkScalar dx() const { return dx_; }
SkScalar dy() const { return dy_; }
SkScalar sigma_x() const { return sigma_x_; }
SkScalar sigma_y() const { return sigma_y_; }
SkColor4f color() const { return color_; }
ShadowMode shadow_mode() const { return shadow_mode_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const DropShadowPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkScalar dx_;
SkScalar dy_;
SkScalar sigma_x_;
SkScalar sigma_y_;
SkColor4f color_;
ShadowMode shadow_mode_;
};
class CC_PAINT_EXPORT MagnifierPaintFilter final : public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kMagnifier;
MagnifierPaintFilter(const SkRect& lens_bounds,
SkScalar zoom_amount,
SkScalar inset,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~MagnifierPaintFilter() override;
const SkRect& lens_bounds() const { return lens_bounds_; }
SkScalar zoom_amount() const { return zoom_amount_; }
SkScalar inset() const { return inset_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const MagnifierPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkRect lens_bounds_;
SkScalar zoom_amount_;
SkScalar inset_;
};
class CC_PAINT_EXPORT ComposePaintFilter final : public TwoInputPaintFilter {
public:
static constexpr Type kType = Type::kCompose;
ComposePaintFilter(sk_sp<PaintFilter> outer, sk_sp<PaintFilter> inner);
~ComposePaintFilter() override;
const sk_sp<PaintFilter>& outer() const { return first_; }
const sk_sp<PaintFilter>& inner() const { return second_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const ComposePaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
};
class CC_PAINT_EXPORT AlphaThresholdPaintFilter final
: public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kAlphaThreshold;
AlphaThresholdPaintFilter(const SkRegion& region,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~AlphaThresholdPaintFilter() override;
const SkRegion& region() const { return region_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const AlphaThresholdPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkRegion region_;
};
class CC_PAINT_EXPORT XfermodePaintFilter final : public TwoInputPaintFilter {
public:
static constexpr Type kType = Type::kXfermode;
XfermodePaintFilter(SkBlendMode blend_mode,
sk_sp<PaintFilter> background,
sk_sp<PaintFilter> foreground,
const CropRect* crop_rect = nullptr);
~XfermodePaintFilter() override;
SkBlendMode blend_mode() const { return blend_mode_; }
const sk_sp<PaintFilter>& background() const { return first_; }
const sk_sp<PaintFilter>& foreground() const { return second_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const XfermodePaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkBlendMode blend_mode_;
};
class CC_PAINT_EXPORT ArithmeticPaintFilter final : public TwoInputPaintFilter {
public:
static constexpr Type kType = Type::kArithmetic;
ArithmeticPaintFilter(float k1,
float k2,
float k3,
float k4,
bool enforce_pm_color,
sk_sp<PaintFilter> background,
sk_sp<PaintFilter> foreground,
const CropRect* crop_rect = nullptr);
~ArithmeticPaintFilter() override;
float k1() const { return k1_; }
float k2() const { return k2_; }
float k3() const { return k3_; }
float k4() const { return k4_; }
bool enforce_pm_color() const { return enforce_pm_color_; }
const sk_sp<PaintFilter>& background() const { return first_; }
const sk_sp<PaintFilter>& foreground() const { return second_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const ArithmeticPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
float k1_;
float k2_;
float k3_;
float k4_;
bool enforce_pm_color_;
};
class CC_PAINT_EXPORT MatrixConvolutionPaintFilter final
: public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kMatrixConvolution;
MatrixConvolutionPaintFilter(const SkISize& kernel_size,
base::span<const SkScalar> kernel,
SkScalar gain,
SkScalar bias,
const SkIPoint& kernel_offset,
SkTileMode tile_mode,
bool convolve_alpha,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~MatrixConvolutionPaintFilter() override;
const SkISize& kernel_size() const { return kernel_size_; }
SkScalar kernel_at(size_t i) const { return kernel_[i]; }
SkScalar gain() const { return gain_; }
SkScalar bias() const { return bias_; }
SkIPoint kernel_offset() const { return kernel_offset_; }
SkTileMode tile_mode() const { return tile_mode_; }
bool convolve_alpha() const { return convolve_alpha_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const MatrixConvolutionPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkISize kernel_size_;
absl::InlinedVector<SkScalar, 3> kernel_;
SkScalar gain_;
SkScalar bias_;
SkIPoint kernel_offset_;
SkTileMode tile_mode_;
bool convolve_alpha_;
};
class CC_PAINT_EXPORT DisplacementMapEffectPaintFilter final
: public TwoInputPaintFilter {
public:
static constexpr Type kType = Type::kDisplacementMapEffect;
DisplacementMapEffectPaintFilter(SkColorChannel channel_x,
SkColorChannel channel_y,
SkScalar scale,
sk_sp<PaintFilter> displacement,
sk_sp<PaintFilter> color,
const CropRect* crop_rect = nullptr);
~DisplacementMapEffectPaintFilter() override;
SkColorChannel channel_x() const { return channel_x_; }
SkColorChannel channel_y() const { return channel_y_; }
SkScalar scale() const { return scale_; }
const sk_sp<PaintFilter>& displacement() const { return first_; }
const sk_sp<PaintFilter>& color() const { return second_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const DisplacementMapEffectPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkColorChannel channel_x_;
SkColorChannel channel_y_;
SkScalar scale_;
};
class CC_PAINT_EXPORT ImagePaintFilter final : public PaintFilter {
public:
static constexpr Type kType = Type::kImage;
ImagePaintFilter(PaintImage image,
const SkRect& src_rect,
const SkRect& dst_rect,
PaintFlags::FilterQuality filter_quality);
~ImagePaintFilter() override;
const PaintImage& image() const { return image_; }
const SkRect& src_rect() const { return src_rect_; }
const SkRect& dst_rect() const { return dst_rect_; }
PaintFlags::FilterQuality filter_quality() const { return filter_quality_; }
gfx::ContentColorUsage GetContentColorUsage() const override;
size_t SerializedSize() const override;
bool EqualsForTesting(const ImagePaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
PaintImage image_;
SkRect src_rect_;
SkRect dst_rect_;
PaintFlags::FilterQuality filter_quality_;
};
class CC_PAINT_EXPORT RecordPaintFilter final : public PaintFilter {
public:
static constexpr Type kType = Type::kPaintRecord;
using ScalingBehavior = PaintShader::ScalingBehavior;
RecordPaintFilter(
PaintRecord record,
const SkRect& record_bounds,
const gfx::SizeF& raster_scale = {1.f, 1.f},
ScalingBehavior scaling_behavior = ScalingBehavior::kRasterAtScale);
~RecordPaintFilter() override;
// Creates a fixed scale RecordPaintFilter for rasterization at the given
// |ctm|. |raster_scale| is set to the scale at which the underlying record
// should be rasterized when the paint filter is used.
// See PaintShader::CreateScaledPaintRecord.
sk_sp<RecordPaintFilter> CreateScaledPaintRecord(const SkMatrix& ctm,
int max_texture_size) const;
const PaintRecord& record() const { return record_; }
SkRect record_bounds() const { return record_bounds_; }
gfx::SizeF raster_scale() const { return raster_scale_; }
ScalingBehavior scaling_behavior() const { return scaling_behavior_; }
gfx::ContentColorUsage GetContentColorUsage() const override;
size_t SerializedSize() const override;
bool EqualsForTesting(const RecordPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
RecordPaintFilter(PaintRecord record,
const SkRect& record_bounds,
const gfx::SizeF& raster_scale,
ScalingBehavior scaling_behavior,
ImageProvider* image_provider);
PaintRecord record_;
SkRect record_bounds_;
gfx::SizeF raster_scale_; // ignored if scaling_behavior is kRasterAtScale
ScalingBehavior scaling_behavior_;
};
class CC_PAINT_EXPORT MergePaintFilter final : public PaintFilter {
public:
static constexpr Type kType = Type::kMerge;
explicit MergePaintFilter(base::span<const sk_sp<PaintFilter>> filters,
const CropRect* crop_rect = nullptr);
~MergePaintFilter() override;
size_t input_count() const { return inputs_.size(); }
const PaintFilter* input_at(size_t i) const {
DCHECK_LT(i, input_count());
return inputs_[i].get();
}
gfx::ContentColorUsage GetContentColorUsage() const override;
size_t SerializedSize() const override;
bool EqualsForTesting(const MergePaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
MergePaintFilter(base::span<const sk_sp<PaintFilter>> filters,
const CropRect* crop_rect,
ImageProvider* image_provider);
absl::InlinedVector<sk_sp<PaintFilter>, 2> inputs_;
};
class CC_PAINT_EXPORT MorphologyPaintFilter final : public OneInputPaintFilter {
public:
enum class MorphType { kDilate, kErode, kMaxValue = kErode };
static constexpr Type kType = Type::kMorphology;
MorphologyPaintFilter(MorphType morph_type,
float radius_x,
float radius_y,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~MorphologyPaintFilter() override;
MorphType morph_type() const { return morph_type_; }
float radius_x() const { return radius_x_; }
float radius_y() const { return radius_y_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const MorphologyPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
MorphType morph_type_;
float radius_x_;
float radius_y_;
};
class CC_PAINT_EXPORT OffsetPaintFilter final : public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kOffset;
OffsetPaintFilter(SkScalar dx,
SkScalar dy,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~OffsetPaintFilter() override;
SkScalar dx() const { return dx_; }
SkScalar dy() const { return dy_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const OffsetPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkScalar dx_;
SkScalar dy_;
};
class CC_PAINT_EXPORT TilePaintFilter final : public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kTile;
TilePaintFilter(const SkRect& src,
const SkRect& dst,
sk_sp<PaintFilter> input);
~TilePaintFilter() override;
const SkRect& src() const { return src_; }
const SkRect& dst() const { return dst_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const TilePaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkRect src_;
SkRect dst_;
};
class CC_PAINT_EXPORT TurbulencePaintFilter final : public PaintFilter {
public:
static constexpr Type kType = Type::kTurbulence;
enum class TurbulenceType {
kTurbulence,
kFractalNoise,
kMaxValue = kFractalNoise
};
TurbulencePaintFilter(TurbulenceType turbulence_type,
SkScalar base_frequency_x,
SkScalar base_frequency_y,
int num_octaves,
SkScalar seed,
const SkISize* tile_size,
const CropRect* crop_rect = nullptr);
~TurbulencePaintFilter() override;
TurbulenceType turbulence_type() const { return turbulence_type_; }
SkScalar base_frequency_x() const { return base_frequency_x_; }
SkScalar base_frequency_y() const { return base_frequency_y_; }
int num_octaves() const { return num_octaves_; }
SkScalar seed() const { return seed_; }
SkISize tile_size() const { return tile_size_; }
gfx::ContentColorUsage GetContentColorUsage() const override;
size_t SerializedSize() const override;
bool EqualsForTesting(const TurbulencePaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
TurbulenceType turbulence_type_;
SkScalar base_frequency_x_;
SkScalar base_frequency_y_;
int num_octaves_;
SkScalar seed_;
SkISize tile_size_;
};
class CC_PAINT_EXPORT ShaderPaintFilter final : public PaintFilter {
public:
static constexpr Type kType = Type::kShader;
using Dither = SkImageFilters::Dither;
ShaderPaintFilter(sk_sp<PaintShader> shader,
float alpha,
PaintFlags::FilterQuality filter_quality,
SkImageFilters::Dither dither,
const CropRect* crop_rect = nullptr);
// This declaration prevents int alpha from being passed.
ShaderPaintFilter(sk_sp<PaintShader>,
unsigned alpha,
PaintFlags::FilterQuality,
SkImageFilters::Dither,
const CropRect* = nullptr) = delete;
~ShaderPaintFilter() override;
const PaintShader& shader() const { return *shader_; }
float alpha() const { return alpha_; }
PaintFlags::FilterQuality filter_quality() const { return filter_quality_; }
SkImageFilters::Dither dither() const { return dither_; }
gfx::ContentColorUsage GetContentColorUsage() const override;
size_t SerializedSize() const override;
bool EqualsForTesting(const ShaderPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
sk_sp<PaintShader> shader_;
float alpha_;
PaintFlags::FilterQuality filter_quality_;
SkImageFilters::Dither dither_;
};
class CC_PAINT_EXPORT MatrixPaintFilter final : public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kMatrix;
MatrixPaintFilter(const SkMatrix& matrix,
PaintFlags::FilterQuality filter_quality,
sk_sp<PaintFilter> input);
~MatrixPaintFilter() override;
const SkMatrix& matrix() const { return matrix_; }
PaintFlags::FilterQuality filter_quality() const { return filter_quality_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const MatrixPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
SkMatrix matrix_;
PaintFlags::FilterQuality filter_quality_;
};
class CC_PAINT_EXPORT LightingDistantPaintFilter final
: public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kLightingDistant;
// kConstant refers to the kd (diffuse) or ks (specular) depending on the
// LightingType.
// For specular lighting type only, shininess denotes the specular exponent.
LightingDistantPaintFilter(LightingType lighting_type,
const SkPoint3& direction,
SkColor4f light_color,
SkScalar surface_scale,
SkScalar kconstant,
SkScalar shininess,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~LightingDistantPaintFilter() override;
LightingType lighting_type() const { return lighting_type_; }
const SkPoint3& direction() const { return direction_; }
SkColor4f light_color() const { return light_color_; }
SkScalar surface_scale() const { return surface_scale_; }
SkScalar kconstant() const { return kconstant_; }
SkScalar shininess() const { return shininess_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const LightingDistantPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
LightingType lighting_type_;
SkPoint3 direction_;
SkColor4f light_color_;
SkScalar surface_scale_;
SkScalar kconstant_;
SkScalar shininess_;
};
class CC_PAINT_EXPORT LightingPointPaintFilter final
: public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kLightingPoint;
// kConstant refers to the kd (diffuse) or ks (specular) depending on the
// LightingType.
// For specular lighting type only, shininess denotes the specular exponent.
LightingPointPaintFilter(LightingType lighting_type,
const SkPoint3& location,
SkColor4f light_color,
SkScalar surface_scale,
SkScalar kconstant,
SkScalar shininess,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~LightingPointPaintFilter() override;
LightingType lighting_type() const { return lighting_type_; }
const SkPoint3& location() const { return location_; }
SkColor4f light_color() const { return light_color_; }
SkScalar surface_scale() const { return surface_scale_; }
SkScalar kconstant() const { return kconstant_; }
SkScalar shininess() const { return shininess_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const LightingPointPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
LightingType lighting_type_;
SkPoint3 location_;
SkColor4f light_color_;
SkScalar surface_scale_;
SkScalar kconstant_;
SkScalar shininess_;
};
class CC_PAINT_EXPORT LightingSpotPaintFilter final
: public OneInputPaintFilter {
public:
static constexpr Type kType = Type::kLightingSpot;
// kConstant refers to the kd (diffuse) or ks (specular) depending on the
// LightingType.
// For specular lighting type only, shininess denotes the specular exponent.
LightingSpotPaintFilter(LightingType lighting_type,
const SkPoint3& location,
const SkPoint3& target,
SkScalar specular_exponent,
SkScalar cutoff_angle,
SkColor4f light_color,
SkScalar surface_scale,
SkScalar kconstant,
SkScalar shininess,
sk_sp<PaintFilter> input,
const CropRect* crop_rect = nullptr);
~LightingSpotPaintFilter() override;
LightingType lighting_type() const { return lighting_type_; }
const SkPoint3& location() const { return location_; }
const SkPoint3& target() const { return target_; }
SkScalar specular_exponent() const { return specular_exponent_; }
SkScalar cutoff_angle() const { return cutoff_angle_; }
SkColor4f light_color() const { return light_color_; }
SkScalar surface_scale() const { return surface_scale_; }
SkScalar kconstant() const { return kconstant_; }
SkScalar shininess() const { return shininess_; }
size_t SerializedSize() const override;
bool EqualsForTesting(const LightingSpotPaintFilter& other) const;
protected:
sk_sp<PaintFilter> SnapshotWithImagesInternal(
ImageProvider* image_provider) const override;
private:
LightingType lighting_type_;
SkPoint3 location_;
SkPoint3 target_;
SkScalar specular_exponent_;
SkScalar cutoff_angle_;
SkColor4f light_color_;
SkScalar surface_scale_;
SkScalar kconstant_;
SkScalar shininess_;
};
} // namespace cc
#endif // CC_PAINT_PAINT_FILTER_H_