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
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
cc / paint / paint_op.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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#ifndef CC_PAINT_PAINT_OP_H_
#define CC_PAINT_PAINT_OP_H_
#include <stdint.h>
#include <cmath>
#include <iosfwd>
#include <limits>
#include <memory>
#include <string>
#include <type_traits>
#include <utility>
#include <vector>
#include "base/check_op.h"
#include "base/containers/span.h"
#include "base/debug/alias.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/notreached.h"
#include "cc/base/math_util.h"
#include "cc/paint/element_id.h"
#include "cc/paint/node_id.h"
#include "cc/paint/paint_canvas.h"
#include "cc/paint/paint_export.h"
#include "cc/paint/paint_filter.h"
#include "cc/paint/paint_flags.h"
#include "cc/paint/paint_record.h"
#include "cc/paint/refcounted_buffer.h"
#include "cc/paint/skottie_color_map.h"
#include "cc/paint/skottie_frame_data.h"
#include "cc/paint/skottie_resource_metadata.h"
#include "cc/paint/skottie_text_property_value.h"
#include "cc/paint/skottie_wrapper.h"
#include "third_party/skia/include/core/SkColor.h"
#include "third_party/skia/include/core/SkPath.h"
#include "third_party/skia/include/core/SkPoint.h"
#include "third_party/skia/include/core/SkRRect.h"
#include "third_party/skia/include/core/SkRect.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkScalar.h"
#include "ui/gfx/display_color_spaces.h"
#include "ui/gfx/geometry/rect.h"
class SkImage;
class SkTextBlob;
namespace sktext::gpu {
class Slug;
}
namespace cc {
class DisplayItemList;
class PaintOpWriter;
class PaintOpReader;
class CC_PAINT_EXPORT ThreadsafePath : public SkPath {
public:
explicit ThreadsafePath(const SkPath& path) : SkPath(path) {
updateBoundsCache();
getGenerationID();
}
ThreadsafePath() {
updateBoundsCache();
getGenerationID();
}
};
// See PaintOp::Serialize/Deserialize for comments. Serialize() of derived
// types don't write the type/serialized_size header because they don't know how
// much data they will need to write. PaintOp::Serialize itself must update the
// header after calling Serialize() of the derived type.
#define HAS_SERIALIZATION_FUNCTIONS() \
void Serialize(PaintOpWriter& writer, const PaintFlags* flags_to_serialize, \
const SkM44& current_ctm, const SkM44& original_ctm) const; \
static PaintOp* Deserialize(PaintOpReader& reader, void* output)
enum class PaintOpType : uint8_t {
kAnnotate,
kClipPath,
kClipRect,
kClipRRect,
kConcat,
kCustomData,
kDrawArc,
kDrawArcLite,
kDrawColor,
kDrawDRRect,
kDrawImage,
kDrawImageRect,
kDrawIRect,
kDrawLine,
kDrawLineLite,
kDrawOval,
kDrawPath,
kDrawRecord,
kDrawRect,
kDrawRRect,
kDrawScrollingContents,
kDrawSkottie,
kDrawSlug,
kDrawTextBlob,
kDrawVertices,
kNoop,
kRestore,
kRotate,
kSave,
kSaveLayer,
kSaveLayerAlpha,
kSaveLayerFilters,
kScale,
kSetMatrix,
kSetNodeId,
kTranslate,
kLastPaintOpType = kTranslate,
};
CC_PAINT_EXPORT std::string PaintOpTypeToString(PaintOpType type);
CC_PAINT_EXPORT std::ostream& operator<<(std::ostream&, PaintOpType);
class CC_PAINT_EXPORT PaintOp {
public:
PaintOp(const PaintOp&) = delete;
PaintOp& operator=(const PaintOp&) = delete;
// Run the destructor for the derived op type. Ops are usually contained in
// memory buffers and so don't have their destructors run automatically.
void DestroyThis();
uint8_t type;
using SerializeOptions = PaintOpBuffer::SerializeOptions;
using DeserializeOptions = PaintOpBuffer::DeserializeOptions;
PaintOpType GetType() const { return static_cast<PaintOpType>(type); }
// Subclasses should provide a static Raster() method which is called from
// here. The Raster method should take a const PaintOp* parameter. It is
// static with a pointer to the base type so that we can use it as a function
// pointer.
void Raster(SkCanvas* canvas, const PlaybackParams& params) const;
bool IsDrawOp() const { return g_is_draw_op[type]; }
bool IsPaintOpWithFlags() const { return g_has_paint_flags[type]; }
uint16_t AlignedSize() const { return g_type_to_aligned_size[type]; }
bool EqualsForTesting(const PaintOp& other) const;
// Indicates how PaintImages are serialized.
enum class SerializedImageType : uint8_t {
kNoImage,
kImageData,
kTransferCacheEntry,
kMailbox,
kLastType = kMailbox
};
// Subclasses should provide a Serialize() method called from here.
// If the op can be serialized to |memory| in no more than |size| bytes,
// then return the number of bytes written. If it won't fit, return 0.
// If |flags_to_serialize| is non-null, it overrides any flags within the op.
// |current_ctm| is the transform that will affect the op when rasterized.
// |original_ctm| is the transform that SetMatrixOps must be made relative to.
size_t Serialize(void* memory,
size_t size,
const SerializeOptions& options,
const PaintFlags* flags_to_serialize,
const SkM44& current_ctm,
const SkM44& original_ctm) const;
// Deserializes a PaintOp of this type from a given buffer |input| of
// at most |input_size| bytes. Returns null on any errors.
// The PaintOp is deserialized into the |output| buffer and returned
// if valid. nullptr is returned if the deserialization fails.
// |output_size| must be at least ComputeOpAlignedSize<LargestPaintOp>(),
// to fit all ops. The caller is responsible for destroying these ops.
// After reading, it returns the number of bytes read in |read_bytes|.
static PaintOp* Deserialize(const volatile void* input,
size_t input_size,
void* output,
size_t output_size,
size_t* read_bytes,
const DeserializeOptions& options);
// Similar to the above, but deserializes into |buffer|.
static PaintOp* DeserializeIntoPaintOpBuffer(
const volatile void* input,
size_t input_size,
PaintOpBuffer* buffer,
size_t* read_bytes,
const DeserializeOptions& options);
// For draw ops, returns true if a conservative bounding rect can be provided
// for the op.
static bool GetBounds(const PaintOp& op, SkRect* rect);
// Returns the minimum conservative bounding rect that |op| draws to on a
// canvas. |clip_rect| and |ctm| are the current clip rect and transform on
// this canvas.
static gfx::Rect ComputePaintRect(const PaintOp& op,
const SkRect& clip_rect,
const SkMatrix& ctm);
// Returns true if the op lies outside the current clip and should be skipped.
// Should only be used with draw ops.
static bool QuickRejectDraw(const PaintOp& op, const SkCanvas* canvas);
// Returns true if executing this op will require decoding of any lazy
// generated images.
static bool OpHasDiscardableImages(const PaintOp& op);
// Returns true if the op contains any draw text operations.
static bool OpHasDrawTextOps(const PaintOp& op);
static size_t OpAdditionalOpCount(const PaintOp& op);
// Returns true if the given op type has PaintFlags.
static bool TypeHasFlags(PaintOpType type);
// kDrawColor is more restrictive on the blend modes that can be used.
static bool IsValidDrawColorSkBlendMode(SkBlendMode mode) {
return static_cast<uint32_t>(mode) <=
static_cast<uint32_t>(SkBlendMode::kLastCoeffMode);
}
// PaintFlags can have more complex blend modes than kDrawColor.
static bool IsValidPaintFlagsSkBlendMode(SkBlendMode mode) {
return static_cast<uint32_t>(mode) <=
static_cast<uint32_t>(SkBlendMode::kLastMode);
}
static constexpr size_t kNumOpTypes =
static_cast<size_t>(PaintOpType::kLastPaintOpType) + 1;
static constexpr bool kIsDrawOp = false;
static constexpr bool kHasPaintFlags = false;
protected:
explicit PaintOp(PaintOpType type) : type(static_cast<uint8_t>(type)) {}
~PaintOp() = default;
int CountSlowPaths() const { return 0; }
int CountSlowPathsFromFlags() const { return 0; }
bool HasNonAAPaint() const { return false; }
bool HasDrawTextOps() const { return false; }
bool HasSaveLayerOps() const { return false; }
bool HasSaveLayerAlphaOps() const { return false; }
// Returns true if effects are present that would break LCD text or be broken
// by the flags for kSaveLayerAlpha to preserving LCD text.
bool HasEffectsPreventingLCDTextForSaveLayerAlpha() const { return false; }
// If `content_color_usage` is not null, the functions should update
// `*content_color_usage` to be
// max(*content_color_usage, max_content_color_usage_of_this_op).
bool HasDiscardableImages(gfx::ContentColorUsage* content_color_usage) const {
return false;
}
bool HasDiscardableImagesFromFlags(
gfx::ContentColorUsage* content_color_usage) const {
return false;
}
// Returns the number of bytes used by this op in referenced sub records
// and display lists. This doesn't count other objects like paths or blobs.
size_t AdditionalBytesUsed() const { return 0; }
// Returns the number of ops in referenced sub records and display lists.
size_t AdditionalOpCount() const { return 0; }
static bool IsValidSkClipOp(SkClipOp op) {
return static_cast<uint32_t>(op) <=
static_cast<uint32_t>(SkClipOp::kMax_EnumValue);
}
static bool IsValidPath(const SkPath& path) { return path.isValid(); }
static bool IsUnsetRect(const SkRect& rect) {
return rect.fLeft == SK_ScalarInfinity;
}
static bool IsValidOrUnsetRect(const SkRect& rect) {
return IsUnsetRect(rect) || rect.isFinite();
}
static const std::array<bool, kNumOpTypes> g_is_draw_op;
static const std::array<bool, kNumOpTypes> g_has_paint_flags;
static const std::array<uint16_t, kNumOpTypes> g_type_to_aligned_size;
static const SkRect kUnsetRect;
};
class CC_PAINT_EXPORT PaintOpWithFlags : public PaintOp {
public:
static constexpr bool kHasPaintFlags = true;
int CountSlowPathsFromFlags() const { return flags.getPathEffect() ? 1 : 0; }
bool HasDiscardableImagesFromFlags(
gfx::ContentColorUsage* content_color_usage) const;
void RasterWithFlags(SkCanvas* canvas,
const PaintFlags* flags,
const PlaybackParams& params) const;
// Subclasses should provide a static RasterWithFlags() method which is called
// from the Raster() method. The RasterWithFlags() should use the SkPaint
// passed to it, instead of the |flags| member directly, as some callers may
// provide a modified PaintFlags. The RasterWithFlags() method is static with
// a const PaintOpWithFlags* parameter so that it can be used as a function
// pointer.
PaintFlags flags;
protected:
PaintOpWithFlags(PaintOpType type, const PaintFlags& flags)
: PaintOp(type), flags(flags) {}
explicit PaintOpWithFlags(PaintOpType type) : PaintOp(type) {}
~PaintOpWithFlags() = default;
bool HasNonAAPaint() const { return !flags.isAntiAlias(); }
};
// The internal types make the non-runtime-polymorphic functions (which are
// protected in PaintOp[WithFlags] to prevent bugs where the functions are
// incorrectly used outside of paint_op.{h,cc}) public in subclasses.
#define INTERNAL_PAINTOP_BASE_TYPE(type, super) \
class type : public super { \
public: \
using super::CountSlowPaths; \
using super::CountSlowPathsFromFlags; \
using super::HasNonAAPaint; \
using super::HasDrawTextOps; \
using super::HasSaveLayerOps; \
using super::HasSaveLayerAlphaOps; \
using super::HasEffectsPreventingLCDTextForSaveLayerAlpha; \
using super::HasDiscardableImages; \
using super::HasDiscardableImagesFromFlags; \
using super::AdditionalBytesUsed; \
using super::AdditionalOpCount; \
\
protected: \
using super::super; \
}
INTERNAL_PAINTOP_BASE_TYPE(PaintOpBaseInternal, PaintOp);
INTERNAL_PAINTOP_BASE_TYPE(PaintOpWithFlagsBaseInternal, PaintOpWithFlags);
#undef INTERNAL_PAINTOP_BASE_TYPE
class CC_PAINT_EXPORT AnnotateOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kAnnotate;
AnnotateOp(PaintCanvas::AnnotationType annotation_type,
const SkRect& rect,
sk_sp<SkData> data);
~AnnotateOp();
static void Raster(const AnnotateOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return rect.isFinite(); }
bool EqualsForTesting(const AnnotateOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
PaintCanvas::AnnotationType annotation_type;
SkRect rect;
sk_sp<SkData> data;
private:
AnnotateOp();
};
class CC_PAINT_EXPORT ClipPathOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kClipPath;
ClipPathOp(SkPath path,
SkClipOp op,
bool antialias,
UsePaintCache use_paint_cache = UsePaintCache::kEnabled)
: PaintOpBaseInternal(kType),
path(path),
op(op),
antialias(antialias),
use_cache(use_paint_cache) {}
static void Raster(const ClipPathOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return IsValidSkClipOp(op) && IsValidPath(path); }
bool EqualsForTesting(const ClipPathOp& other) const;
int CountSlowPaths() const;
bool HasNonAAPaint() const { return !antialias; }
HAS_SERIALIZATION_FUNCTIONS();
ThreadsafePath path;
SkClipOp op;
bool antialias;
UsePaintCache use_cache = UsePaintCache::kDisabled;
private:
ClipPathOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT ClipRectOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kClipRect;
ClipRectOp(const SkRect& rect, SkClipOp op, bool antialias)
: PaintOpBaseInternal(kType), rect(rect), op(op), antialias(antialias) {}
static void Raster(const ClipRectOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return IsValidSkClipOp(op) && rect.isFinite(); }
bool EqualsForTesting(const ClipRectOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkRect rect;
SkClipOp op;
bool antialias;
private:
ClipRectOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT ClipRRectOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kClipRRect;
ClipRRectOp(const SkRRect& rrect, SkClipOp op, bool antialias)
: PaintOpBaseInternal(kType),
rrect(rrect),
op(op),
antialias(antialias) {}
static void Raster(const ClipRRectOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return IsValidSkClipOp(op) && rrect.isValid(); }
bool EqualsForTesting(const ClipRRectOp& other) const;
bool HasNonAAPaint() const { return !antialias; }
HAS_SERIALIZATION_FUNCTIONS();
SkRRect rrect;
SkClipOp op;
bool antialias;
private:
ClipRRectOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT ConcatOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kConcat;
explicit ConcatOp(const SkM44& matrix)
: PaintOpBaseInternal(kType), matrix(matrix) {}
static void Raster(const ConcatOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const ConcatOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkM44 matrix;
private:
ConcatOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT CustomDataOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kCustomData;
explicit CustomDataOp(uint32_t id) : PaintOpBaseInternal(kType), id(id) {}
static void Raster(const CustomDataOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const CustomDataOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
// Stores user defined id as a placeholder op.
uint32_t id;
private:
CustomDataOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawColorOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawColor;
static constexpr bool kIsDrawOp = true;
DrawColorOp(SkColor4f color, SkBlendMode mode)
: PaintOpBaseInternal(kType), color(color), mode(mode) {}
static void Raster(const DrawColorOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return IsValidDrawColorSkBlendMode(mode); }
bool EqualsForTesting(const DrawColorOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkColor4f color;
SkBlendMode mode;
private:
DrawColorOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawDRRectOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawDRRect;
static constexpr bool kIsDrawOp = true;
DrawDRRectOp(const SkRRect& outer,
const SkRRect& inner,
const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags),
outer(outer),
inner(inner) {}
static void RasterWithFlags(const DrawDRRectOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const {
return flags.IsValid() && outer.isValid() && inner.isValid();
}
bool EqualsForTesting(const DrawDRRectOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkRRect outer;
SkRRect inner;
private:
DrawDRRectOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawImageOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawImage;
static constexpr bool kIsDrawOp = true;
DrawImageOp(const PaintImage& image, SkScalar left, SkScalar top);
DrawImageOp(const PaintImage& image,
SkScalar left,
SkScalar top,
const SkSamplingOptions&,
const PaintFlags* flags);
~DrawImageOp();
static void RasterWithFlags(const DrawImageOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const {
return flags.IsValid() && std::isfinite(scale_adjustment.width()) &&
std::isfinite(scale_adjustment.height());
}
bool EqualsForTesting(const DrawImageOp& other) const;
bool HasDiscardableImages(gfx::ContentColorUsage* content_color_usage) const;
PaintFlags::FilterQuality GetImageQuality() const;
bool HasNonAAPaint() const { return false; }
HAS_SERIALIZATION_FUNCTIONS();
PaintImage image;
SkScalar left;
SkScalar top;
SkSamplingOptions sampling;
private:
DrawImageOp();
// Scale that has already been applied to the decoded image during
// serialization. Used with OOP raster.
SkSize scale_adjustment = SkSize::Make(1.f, 1.f);
};
class CC_PAINT_EXPORT DrawImageRectOp final
: public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawImageRect;
static constexpr bool kIsDrawOp = true;
DrawImageRectOp(const PaintImage& image,
const SkRect& src,
const SkRect& dst,
SkCanvas::SrcRectConstraint constraint);
DrawImageRectOp(const PaintImage& image,
const SkRect& src,
const SkRect& dst,
const SkSamplingOptions&,
const PaintFlags* flags,
SkCanvas::SrcRectConstraint constraint);
~DrawImageRectOp();
static void RasterWithFlags(const DrawImageRectOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const {
return flags.IsValid() && src.isFinite() && dst.isFinite() &&
std::isfinite(scale_adjustment.width()) &&
std::isfinite(scale_adjustment.height());
}
bool EqualsForTesting(const DrawImageRectOp& other) const;
bool HasDiscardableImages(gfx::ContentColorUsage* content_color_usage) const;
PaintFlags::FilterQuality GetImageQuality() const;
HAS_SERIALIZATION_FUNCTIONS();
PaintImage image;
SkRect src;
SkRect dst;
SkSamplingOptions sampling;
SkCanvas::SrcRectConstraint constraint;
private:
DrawImageRectOp();
// Scale that has already been applied to the decoded image during
// serialization. Used with OOP raster.
SkSize scale_adjustment = SkSize::Make(1.f, 1.f);
};
class CC_PAINT_EXPORT DrawIRectOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawIRect;
static constexpr bool kIsDrawOp = true;
DrawIRectOp(const SkIRect& rect, const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags), rect(rect) {}
static void RasterWithFlags(const DrawIRectOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid(); }
bool EqualsForTesting(const DrawIRectOp& other) const;
bool HasNonAAPaint() const { return false; }
HAS_SERIALIZATION_FUNCTIONS();
SkIRect rect;
private:
DrawIRectOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawLineOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawLine;
static constexpr bool kIsDrawOp = true;
DrawLineOp(SkScalar x0,
SkScalar y0,
SkScalar x1,
SkScalar y1,
const PaintFlags& flags,
bool draw_as_path = false)
: PaintOpWithFlagsBaseInternal(kType, flags),
x0(x0),
y0(y0),
x1(x1),
y1(y1),
draw_as_path(draw_as_path) {}
static void RasterWithFlags(const DrawLineOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid(); }
bool EqualsForTesting(const DrawLineOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
int CountSlowPaths() const;
SkScalar x0;
SkScalar y0;
SkScalar x1;
SkScalar y1;
// Used to indicate if rasterization should treat the line as a path.
// Typically this should be false, but in some situations it can be quicker
// to raster lines as paths.
bool draw_as_path;
private:
DrawLineOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
// TODO(crbug.com/340122178): figure out a better way to unify types.
class CC_PAINT_EXPORT DrawLineLiteOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawLineLite;
static constexpr bool kIsDrawOp = true;
DrawLineLiteOp(SkScalar x0,
SkScalar y0,
SkScalar x1,
SkScalar y1,
const CorePaintFlags& core_paint_flags)
: PaintOpBaseInternal(kType),
x0(x0),
y0(y0),
x1(x1),
y1(y1),
core_paint_flags(core_paint_flags) {}
static void Raster(const DrawLineLiteOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return core_paint_flags.IsValid(); }
bool EqualsForTesting(const DrawLineLiteOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
int CountSlowPaths() const { return 0; }
SkScalar x0;
SkScalar y0;
SkScalar x1;
SkScalar y1;
CorePaintFlags core_paint_flags;
private:
DrawLineLiteOp() : PaintOpBaseInternal(kType) {}
};
// TODO(crbug.com/340122178): figure out a better way to unify types.
class CC_PAINT_EXPORT DrawArcLiteOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawArcLite;
static constexpr bool kIsDrawOp = true;
DrawArcLiteOp(const SkRect& oval,
SkScalar start_angle_degrees,
SkScalar sweep_angle_degrees,
const CorePaintFlags& core_paint_flags)
: PaintOpBaseInternal(kType),
oval(oval),
start_angle_degrees(start_angle_degrees),
sweep_angle_degrees(sweep_angle_degrees),
core_paint_flags(core_paint_flags) {}
static void Raster(const DrawArcLiteOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const {
return core_paint_flags.IsValid() && oval.isFinite() &&
std::isfinite(start_angle_degrees) &&
std::isfinite(sweep_angle_degrees);
}
bool EqualsForTesting(const DrawArcLiteOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkRect oval;
SkScalar start_angle_degrees;
SkScalar sweep_angle_degrees;
CorePaintFlags core_paint_flags;
private:
DrawArcLiteOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawArcOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawArc;
static constexpr bool kIsDrawOp = true;
DrawArcOp(const SkRect& oval,
SkScalar start_angle_degrees,
SkScalar sweep_angle_degrees,
const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags),
oval(oval),
start_angle_degrees(start_angle_degrees),
sweep_angle_degrees(sweep_angle_degrees) {}
static void RasterWithFlags(const DrawArcOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
// Actual implementation for rastering.
void RasterWithFlagsImpl(const PaintFlags* flags, SkCanvas* canvas) const;
bool IsValid() const {
return flags.IsValid() && oval.isFinite() &&
std::isfinite(start_angle_degrees) &&
std::isfinite(sweep_angle_degrees);
}
bool EqualsForTesting(const DrawArcOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkRect oval;
SkScalar start_angle_degrees;
SkScalar sweep_angle_degrees;
private:
DrawArcOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawOvalOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawOval;
static constexpr bool kIsDrawOp = true;
DrawOvalOp(const SkRect& oval, const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags), oval(oval) {}
static void RasterWithFlags(const DrawOvalOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid() && oval.isFinite(); }
bool EqualsForTesting(const DrawOvalOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkRect oval;
private:
DrawOvalOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawPathOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawPath;
static constexpr bool kIsDrawOp = true;
DrawPathOp(const SkPath& path,
const PaintFlags& flags,
UsePaintCache use_paint_cache = UsePaintCache::kEnabled)
: PaintOpWithFlagsBaseInternal(kType, flags),
path(path),
sk_path_fill_type(static_cast<uint8_t>(path.getFillType())),
use_cache(use_paint_cache) {}
static void RasterWithFlags(const DrawPathOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid() && IsValidPath(path); }
bool EqualsForTesting(const DrawPathOp& other) const;
int CountSlowPaths() const;
HAS_SERIALIZATION_FUNCTIONS();
ThreadsafePath path;
// Changing the fill type on an SkPath does not change the
// generation id. This can lead to caching issues so we explicitly
// serialize/deserialize this value and set it on the SkPath before handing it
// to Skia.
uint8_t sk_path_fill_type;
UsePaintCache use_cache = UsePaintCache::kDisabled;
private:
DrawPathOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawRecordOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawRecord;
static constexpr bool kIsDrawOp = true;
explicit DrawRecordOp(PaintRecord record, bool local_ctm = true);
~DrawRecordOp();
static void Raster(const DrawRecordOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const DrawRecordOp& other) const;
size_t AdditionalBytesUsed() const;
size_t AdditionalOpCount() const;
bool HasDiscardableImages(gfx::ContentColorUsage* content_color_usage) const;
int CountSlowPaths() const;
bool HasNonAAPaint() const;
bool HasDrawTextOps() const;
bool HasSaveLayerOps() const;
bool HasSaveLayerAlphaOps() const;
bool HasEffectsPreventingLCDTextForSaveLayerAlpha() const;
HAS_SERIALIZATION_FUNCTIONS();
PaintRecord record;
// If `local_ctm` is `true`, the transform operations in `record` are local to
// that recording: any transform changes done by `record` are undone before
// this `DrawRecordOp` completes and `SetMatrixOp` acts relatively to the
// transform set on the destination record (to "anchor" `SetMatrixOp` and
// other multiplicative matrix transforms on the same base transform). If
// `local_ctm` is `false`, matrix changes done by `record` act as if part of
// the parent record: transform changes are preserved after this
// `DrawRecordOp` is rasterized and `SetMatrixOp` ignores parent transforms.
bool local_ctm = true;
};
class CC_PAINT_EXPORT DrawRectOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawRect;
static constexpr bool kIsDrawOp = true;
DrawRectOp(const SkRect& rect, const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags), rect(rect) {}
static void RasterWithFlags(const DrawRectOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid() && rect.isFinite(); }
bool EqualsForTesting(const DrawRectOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkRect rect;
private:
DrawRectOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
class CC_PAINT_EXPORT DrawRRectOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawRRect;
static constexpr bool kIsDrawOp = true;
DrawRRectOp(const SkRRect& rrect, const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags), rrect(rrect) {}
static void RasterWithFlags(const DrawRRectOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid() && rrect.isValid(); }
bool EqualsForTesting(const DrawRRectOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkRRect rrect;
private:
DrawRRectOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
// This is used to draw non-composited scrolling contents. The display item
// list should contain painted results beyond the current scroll port like
// composited scrolling contents. During rasterization or serialization, the
// current clip of the canvas and the current scroll offset and will be applied
// to the display item list. This PaintOp doesn't apply the overflow clip of
// the scroller, but the client should emit ClipRectOp.
class CC_PAINT_EXPORT DrawScrollingContentsOp final
: public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawScrollingContents;
static constexpr bool kIsDrawOp = true;
DrawScrollingContentsOp(ElementId scroll_element_id,
scoped_refptr<DisplayItemList> display_item_list);
~DrawScrollingContentsOp();
static void Raster(const DrawScrollingContentsOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return scroll_element_id && display_item_list; }
bool EqualsForTesting(const DrawScrollingContentsOp& other) const;
size_t AdditionalBytesUsed() const;
size_t AdditionalOpCount() const;
bool HasDiscardableImages(gfx::ContentColorUsage* content_color_usage) const;
int CountSlowPaths() const;
bool HasNonAAPaint() const;
bool HasDrawTextOps() const;
bool HasSaveLayerOps() const;
bool HasSaveLayerAlphaOps() const;
bool HasEffectsPreventingLCDTextForSaveLayerAlpha() const;
HAS_SERIALIZATION_FUNCTIONS();
ElementId scroll_element_id;
scoped_refptr<DisplayItemList> display_item_list;
};
class CC_PAINT_EXPORT DrawVerticesOp final
: public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawVertices;
static constexpr bool kIsDrawOp = true;
DrawVerticesOp(scoped_refptr<RefCountedBuffer<SkPoint>> vertices,
scoped_refptr<RefCountedBuffer<SkPoint>> uvs,
scoped_refptr<RefCountedBuffer<uint16_t>> indices,
const PaintFlags&);
~DrawVerticesOp();
static void RasterWithFlags(const DrawVerticesOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const {
return flags.IsValid() && vertices && uvs && indices &&
vertices->data().size() > 0 &&
vertices->data().size() == uvs->data().size() &&
indices->data().size() > 0 && (indices->data().size() % 3) == 0;
}
bool EqualsForTesting(const DrawVerticesOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
scoped_refptr<RefCountedBuffer<SkPoint>> vertices;
scoped_refptr<RefCountedBuffer<SkPoint>> uvs;
scoped_refptr<RefCountedBuffer<uint16_t>> indices;
private:
DrawVerticesOp();
};
class CC_PAINT_EXPORT DrawSkottieOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawSkottie;
static constexpr bool kIsDrawOp = true;
DrawSkottieOp(scoped_refptr<SkottieWrapper> skottie,
SkRect dst,
float t,
SkottieFrameDataMap images,
const SkottieColorMap& color_map,
SkottieTextPropertyValueMap text_map);
~DrawSkottieOp();
static void Raster(const DrawSkottieOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const {
return skottie && skottie->is_valid() && !dst.isEmpty() && t >= 0 &&
t <= 1.f;
}
bool EqualsForTesting(const DrawSkottieOp& other) const;
bool HasDiscardableImages(gfx::ContentColorUsage* content_color_usage) const;
HAS_SERIALIZATION_FUNCTIONS();
scoped_refptr<SkottieWrapper> skottie;
SkRect dst;
float t;
// Image to use for each asset in this frame of the animation. If an asset is
// missing, the most recently used image for that asset (from a previous
// DrawSkottieOp) gets reused when rendering this frame. Given that image
// assets generally do not change from frame to frame in most animations, that
// means in practice, this map is often empty.
SkottieFrameDataMap images;
// Node name hashes and corresponding colors to use for dynamic coloration.
SkottieColorMap color_map;
SkottieTextPropertyValueMap text_map;
private:
SkottieWrapper::FrameDataFetchResult GetImageAssetForRaster(
SkCanvas* canvas,
const PlaybackParams& params,
SkottieResourceIdHash asset_id,
float t_frame,
sk_sp<SkImage>& image_out,
SkSamplingOptions& sampling_out) const;
DrawSkottieOp();
};
class CC_PAINT_EXPORT DrawSlugOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawSlug;
static constexpr bool kIsDrawOp = true;
DrawSlugOp(sk_sp<sktext::gpu::Slug> slug, const PaintFlags& flags);
~DrawSlugOp();
static void SerializeSlugs(
const sk_sp<sktext::gpu::Slug>& slug,
const std::vector<sk_sp<sktext::gpu::Slug>>& extra_slugs,
PaintOpWriter& writer,
const PaintFlags* flags_to_serialize,
const SkM44& current_ctm);
static void RasterWithFlags(const DrawSlugOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid(); }
bool HasDrawTextOps() const { return true; }
bool EqualsForTesting(const DrawSlugOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
sk_sp<sktext::gpu::Slug> slug;
std::vector<sk_sp<sktext::gpu::Slug>> extra_slugs;
private:
DrawSlugOp();
};
class CC_PAINT_EXPORT DrawTextBlobOp final
: public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kDrawTextBlob;
static constexpr bool kIsDrawOp = true;
DrawTextBlobOp(sk_sp<SkTextBlob> blob,
SkScalar x,
SkScalar y,
const PaintFlags& flags);
DrawTextBlobOp(sk_sp<SkTextBlob> blob,
SkScalar x,
SkScalar y,
NodeId node_id,
const PaintFlags& flags);
~DrawTextBlobOp();
static void RasterWithFlags(const DrawTextBlobOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid(); }
bool HasDrawTextOps() const { return true; }
bool EqualsForTesting(const DrawTextBlobOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
sk_sp<SkTextBlob> blob;
mutable sk_sp<sktext::gpu::Slug> slug;
mutable std::vector<sk_sp<sktext::gpu::Slug>> extra_slugs;
SkScalar x;
SkScalar y;
// This field isn't serialized.
NodeId node_id = kInvalidNodeId;
private:
DrawTextBlobOp();
};
class CC_PAINT_EXPORT NoopOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kNoop;
NoopOp() : PaintOpBaseInternal(kType) {}
static void Raster(const NoopOp* op,
SkCanvas* canvas,
const PlaybackParams& params) {}
bool IsValid() const { return true; }
bool EqualsForTesting(const NoopOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
};
class CC_PAINT_EXPORT RestoreOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kRestore;
RestoreOp() : PaintOpBaseInternal(kType) {}
static void Raster(const RestoreOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const RestoreOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
};
class CC_PAINT_EXPORT RotateOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kRotate;
explicit RotateOp(SkScalar degrees)
: PaintOpBaseInternal(kType), degrees(degrees) {}
static void Raster(const RotateOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const RotateOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkScalar degrees;
private:
RotateOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT SaveOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kSave;
SaveOp() : PaintOpBaseInternal(kType) {}
static void Raster(const SaveOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const SaveOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
};
class CC_PAINT_EXPORT SaveLayerOp final : public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kSaveLayer;
explicit SaveLayerOp(const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags), bounds(kUnsetRect) {}
SaveLayerOp(const SkRect& bounds, const PaintFlags& flags)
: PaintOpWithFlagsBaseInternal(kType, flags), bounds(bounds) {}
static void RasterWithFlags(const SaveLayerOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return flags.IsValid() && IsValidOrUnsetRect(bounds); }
bool EqualsForTesting(const SaveLayerOp& other) const;
bool HasNonAAPaint() const { return false; }
// We simply assume any effects (or even no effects -- just starting an empty
// transparent layer) would break LCD text or be broken by the flags for
// kSaveLayerAlpha to preserve LCD text.
bool HasEffectsPreventingLCDTextForSaveLayerAlpha() const { return true; }
bool HasSaveLayerOps() const { return true; }
HAS_SERIALIZATION_FUNCTIONS();
SkRect bounds;
private:
SaveLayerOp() : PaintOpWithFlagsBaseInternal(kType) {}
};
class CC_PAINT_EXPORT SaveLayerAlphaOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kSaveLayerAlpha;
template <class F, class = std::enable_if_t<std::is_same_v<F, float>>>
explicit SaveLayerAlphaOp(F alpha)
: PaintOpBaseInternal(kType), bounds(kUnsetRect), alpha(alpha) {}
template <class F, class = std::enable_if_t<std::is_same_v<F, float>>>
SaveLayerAlphaOp(const SkRect& bounds, F alpha)
: PaintOpBaseInternal(kType), bounds(bounds), alpha(alpha) {}
static void Raster(const SaveLayerAlphaOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return IsValidOrUnsetRect(bounds); }
bool EqualsForTesting(const SaveLayerAlphaOp& other) const;
bool HasSaveLayerOps() const { return true; }
bool HasSaveLayerAlphaOps() const { return true; }
HAS_SERIALIZATION_FUNCTIONS();
SkRect bounds;
float alpha;
private:
SaveLayerAlphaOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT SaveLayerFiltersOp final
: public PaintOpWithFlagsBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kSaveLayerFilters;
explicit SaveLayerFiltersOp(base::span<const sk_sp<PaintFilter>> filters,
const PaintFlags& flags);
~SaveLayerFiltersOp();
static void RasterWithFlags(const SaveLayerFiltersOp* op,
const PaintFlags* flags,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const {
return flags.IsValid() && (!flags.getImageFilter() || filters.empty());
}
bool EqualsForTesting(const SaveLayerFiltersOp& other) const;
bool HasSaveLayerOps() const { return true; }
HAS_SERIALIZATION_FUNCTIONS();
std::vector<sk_sp<PaintFilter>> filters;
private:
SaveLayerFiltersOp();
};
class CC_PAINT_EXPORT ScaleOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kScale;
ScaleOp(SkScalar sx, SkScalar sy)
: PaintOpBaseInternal(kType), sx(sx), sy(sy) {}
static void Raster(const ScaleOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const ScaleOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkScalar sx;
SkScalar sy;
private:
ScaleOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT SetMatrixOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kSetMatrix;
explicit SetMatrixOp(const SkM44& matrix)
: PaintOpBaseInternal(kType), matrix(matrix) {}
// This is the only op that needs the original ctm of the SkCanvas
// used for raster (since kSetMatrix is relative to the recording origin and
// shouldn't clobber the SkCanvas raster origin).
//
// TODO(enne): Find some cleaner way to do this, possibly by making
// all kSetMatrix calls kConcat??
static void Raster(const SetMatrixOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const SetMatrixOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkM44 matrix;
private:
SetMatrixOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT SetNodeIdOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kSetNodeId;
explicit SetNodeIdOp(int node_id)
: PaintOpBaseInternal(kType), node_id(node_id) {}
static void Raster(const SetNodeIdOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const SetNodeIdOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
int node_id;
private:
SetNodeIdOp() : PaintOpBaseInternal(kType) {}
};
class CC_PAINT_EXPORT TranslateOp final : public PaintOpBaseInternal {
public:
static constexpr PaintOpType kType = PaintOpType::kTranslate;
TranslateOp(SkScalar dx, SkScalar dy)
: PaintOpBaseInternal(kType), dx(dx), dy(dy) {}
static void Raster(const TranslateOp* op,
SkCanvas* canvas,
const PlaybackParams& params);
bool IsValid() const { return true; }
bool EqualsForTesting(const TranslateOp& other) const;
HAS_SERIALIZATION_FUNCTIONS();
SkScalar dx;
SkScalar dy;
private:
TranslateOp() : PaintOpBaseInternal(kType) {}
};
#undef HAS_SERIALIZATION_FUNCTIONS
// TODO(vmpstr): Revisit this when sizes of DrawImageRectOp change.
using LargestPaintOp =
typename std::conditional<(sizeof(DrawImageRectOp) > sizeof(DrawDRRectOp)),
DrawImageRectOp,
DrawDRRectOp>::type;
// When allocating a buffer for deserialization of a single PaintOp, the buffer
// should be aligned as PaintOpBuffer::kPaintOpAlign, and the size should be
// kLargestPaintOpAlignedSize instead of sizeof(LargestPaintOp).
inline constexpr size_t kLargestPaintOpAlignedSize =
PaintOpBuffer::ComputeOpAlignedSize<LargestPaintOp>();
// This is declared here for use in gtest-based unit tests but is defined in
// the //cc:test_support target. Depend on that to use this in your unit test.
// This should not be used in production code.
void PrintTo(const PaintOp& rect, std::ostream* os);
CC_PAINT_EXPORT bool AreLiteOpsEnabled();
} // namespace cc
#endif // CC_PAINT_PAINT_OP_H_