Skia
2DGraphicsLibrary
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SkPaintImageFilter.h
1 /*
2  * Copyright 2016 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef SkPaintImageFilter_DEFINED
9 #define SkPaintImageFilter_DEFINED
10 
11 #include "SkImageFilter.h"
12 #include "SkPaint.h"
13 
14 class SK_API SkPaintImageFilter : public SkImageFilter {
15 public:
25  static sk_sp<SkImageFilter> Make(const SkPaint& paint, const CropRect* cropRect = nullptr);
26 
27  bool affectsTransparentBlack() const override;
28 
29  SK_TO_STRING_OVERRIDE()
30  SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPaintImageFilter)
31 
32 protected:
33  void flatten(SkWriteBuffer&) const override;
34  sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&,
35  SkIPoint* offset) const override;
36  sk_sp<SkImageFilter> onMakeColorSpace(SkColorSpaceXformer* xformer) const override;
37 
38 private:
39  SkPaintImageFilter(const SkPaint& paint, const CropRect* rect);
40 
41  SkPaint fPaint;
42 
43  typedef SkImageFilter INHERITED;
44 };
45 
46 #endif
Definition: SkImageFilter.h:76
Definition: SkPaintImageFilter.h:14
void flatten(SkWriteBuffer &) const override
Override this if your subclass needs to record data that it will need to recreate itself from its Cre...
virtual sk_sp< SkSpecialImage > onFilterImage(SkSpecialImage *src, const Context &, SkIPoint *offset) const =0
This is the virtual which should be overridden by the derived class to perform image filtering...
Definition: SkRefCnt.h:125
The SkPaint class holds the style and color information about how to draw geometries, text and bitmaps.
Definition: SkPaint.h:45
Base class for image filters.
Definition: SkImageFilter.h:36
Definition: SkWriteBuffer.h:27
Definition: SkImageFilter.h:54
SkIPoint holds two 32 bit integer coordinates.
Definition: SkPoint.h:40