blob: 9f0e29939114085d627aeb50e320f3fad9731566 [file] [log] [blame]
reed@google.com894aa9a2011-09-23 14:49:49 +00001/*
2 * Copyright 2011 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 SkImageFilter_DEFINED
9#define SkImageFilter_DEFINED
10
11#include "SkFlattenable.h"
senorblanco@chromium.org194d7752013-07-24 22:19:24 +000012#include "SkRect.h"
reed@google.com894aa9a2011-09-23 14:49:49 +000013
reed@google.com15356a62011-11-03 19:29:08 +000014class SkBitmap;
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +000015class SkColorFilter;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000016class SkBaseDevice;
reed@google.com15356a62011-11-03 19:29:08 +000017class SkMatrix;
djsollen@google.comc73dd5c2012-08-07 15:54:32 +000018struct SkIPoint;
sugoi@google.coma1c511b2013-02-21 15:02:28 +000019class SkShader;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000020class GrEffectRef;
tomhudson@google.comd0c1a062012-07-12 17:23:52 +000021class GrTexture;
reed@google.com15356a62011-11-03 19:29:08 +000022
23/**
reed@google.com15356a62011-11-03 19:29:08 +000024 * Base class for image filters. If one is installed in the paint, then
25 * all drawing occurs as usual, but it is as if the drawing happened into an
26 * offscreen (before the xfermode is applied). This offscreen bitmap will
27 * then be handed to the imagefilter, who in turn creates a new bitmap which
28 * is what will finally be drawn to the device (using the original xfermode).
reed@google.com15356a62011-11-03 19:29:08 +000029 */
senorblanco@chromium.org54e01b22011-11-16 18:20:47 +000030class SK_API SkImageFilter : public SkFlattenable {
reed@google.com894aa9a2011-09-23 14:49:49 +000031public:
robertphillips@google.com0456e0b2012-06-27 14:03:26 +000032 SK_DECLARE_INST_COUNT(SkImageFilter)
33
senorblanco@chromium.orgb295fb62013-10-10 13:51:19 +000034#ifdef SK_CROP_RECT_IS_INT
35 typedef SkIRect CropRect;
36#else
37 struct CropRect {
38 SkRect fRect;
39 uint32_t fFlags;
40 enum CropEdge {
41 kHasLeft_CropEdge = 0x01,
42 kHasTop_CropEdge = 0x02,
43 kHasRight_CropEdge = 0x04,
44 kHasBottom_CropEdge = 0x08,
45 kHasAll_CropEdge = 0x0F,
46 };
47 CropRect() {}
48 explicit CropRect(const SkRect& rect, uint32_t flags = kHasAll_CropEdge) : fRect(rect), fFlags(flags) {}
49 bool isSet() const
50 {
51 return fFlags != 0x0;
52 }
53 };
54#endif
55
reed@google.com76dd2772012-01-05 21:15:07 +000056 class Proxy {
57 public:
reed@google.com8926b162012-03-23 15:36:36 +000058 virtual ~Proxy() {};
59
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000060 virtual SkBaseDevice* createDevice(int width, int height) = 0;
reed@google.com8926b162012-03-23 15:36:36 +000061 // returns true if the proxy can handle this filter natively
62 virtual bool canHandleImageFilter(SkImageFilter*) = 0;
reed@google.com76dd2772012-01-05 21:15:07 +000063 // returns true if the proxy handled the filter itself. if this returns
64 // false then the filter's code will be called.
65 virtual bool filterImage(SkImageFilter*, const SkBitmap& src,
66 const SkMatrix& ctm,
67 SkBitmap* result, SkIPoint* offset) = 0;
68 };
reed@google.com894aa9a2011-09-23 14:49:49 +000069
70 /**
71 * Request a new (result) image to be created from the src image.
72 * If the src has no pixels (isNull()) then the request just wants to
73 * receive the config and width/height of the result.
74 *
75 * The matrix is the current matrix on the canvas.
76 *
77 * Offset is the amount to translate the resulting image relative to the
rmistry@google.comfbfcd562012-08-23 18:09:54 +000078 * src when it is drawn.
reed@google.com894aa9a2011-09-23 14:49:49 +000079 *
80 * If the result image cannot be created, return false, in which case both
81 * the result and offset parameters will be ignored by the caller.
82 */
reed@google.com76dd2772012-01-05 21:15:07 +000083 bool filterImage(Proxy*, const SkBitmap& src, const SkMatrix& ctm,
reed@google.com15356a62011-11-03 19:29:08 +000084 SkBitmap* result, SkIPoint* offset);
85
86 /**
reed@google.com32d25b62011-12-20 16:19:00 +000087 * Given the src bounds of an image, this returns the bounds of the result
88 * image after the filter has been applied.
89 */
90 bool filterBounds(const SkIRect& src, const SkMatrix& ctm, SkIRect* dst);
91
92 /**
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000093 * Returns true if the filter can be expressed a single-pass
bsalomon@google.coma469c282012-10-24 18:28:34 +000094 * GrEffect, used to process this filter on the GPU, or false if
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000095 * not.
rmistry@google.comfbfcd562012-08-23 18:09:54 +000096 *
bsalomon@google.com021fc732012-10-25 12:47:42 +000097 * If effect is non-NULL, a new GrEffect instance is stored
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000098 * in it. The caller assumes ownership of the stage, and it is up to the
99 * caller to unref it.
bsalomon@google.com17fc6512012-11-02 21:45:01 +0000100 *
101 * The effect can assume its vertexCoords space maps 1-to-1 with texels
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +0000102 * in the texture. "matrix" is a transformation to apply to filter
103 * parameters before they are used in the effect. Note that this function
104 * will be called with (NULL, NULL, SkMatrix::I()) to query for support,
105 * so returning "true" indicates support for all possible matrices.
senorblanco@chromium.org894790d2012-07-11 16:01:22 +0000106 */
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +0000107 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix) const;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +0000108
109 /**
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +0000110 * Returns true if the filter can be processed on the GPU. This is most
111 * often used for multi-pass effects, where intermediate results must be
bsalomon@google.com8ea78d82012-10-24 20:11:30 +0000112 * rendered to textures. For single-pass effects, use asNewEffect().
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +0000113 * The default implementation returns asNewEffect(NULL, NULL, SkMatrix::I()).
reed@google.com15356a62011-11-03 19:29:08 +0000114 */
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +0000115 virtual bool canFilterImageGPU() const;
reed@google.com894aa9a2011-09-23 14:49:49 +0000116
senorblanco@chromium.org05054f12012-03-02 21:05:45 +0000117 /**
skia.committer@gmail.com32840172013-04-09 07:01:27 +0000118 * Process this image filter on the GPU. This is most often used for
senorblanco@chromium.orgd043cce2013-04-08 19:43:22 +0000119 * multi-pass effects, where intermediate results must be rendered to
120 * textures. For single-pass effects, use asNewEffect(). src is the
121 * source image for processing, as a texture-backed bitmap. result is
122 * the destination bitmap, which should contain a texture-backed pixelref
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +0000123 * on success. offset is the amount to translate the resulting image
commit-bot@chromium.org7b320702013-07-10 21:22:18 +0000124 * relative to the src when it is drawn. The default implementation does
125 * single-pass processing using asNewEffect().
senorblanco@chromium.org05054f12012-03-02 21:05:45 +0000126 */
commit-bot@chromium.org1aa54bf2013-08-05 16:53:50 +0000127 virtual bool filterImageGPU(Proxy*, const SkBitmap& src, const SkMatrix& ctm,
128 SkBitmap* result, SkIPoint* offset);
senorblanco@chromium.org05054f12012-03-02 21:05:45 +0000129
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000130 /**
sugoi@google.coma1c511b2013-02-21 15:02:28 +0000131 * Returns whether this image filter is a color filter and puts the color filter into the
sugoi@google.com4b6d4322013-02-21 20:26:50 +0000132 * "filterPtr" parameter if it can. Does nothing otherwise.
133 * If this returns false, then the filterPtr is unchanged.
134 * If this returns true, then if filterPtr is not null, it must be set to a ref'd colorfitler
135 * (i.e. it may not be set to NULL).
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000136 */
sugoi@google.com4b6d4322013-02-21 20:26:50 +0000137 virtual bool asColorFilter(SkColorFilter** filterPtr) const;
senorblanco@chromium.org9f25de72012-10-10 20:36:13 +0000138
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000139 /**
140 * Returns the number of inputs this filter will accept (some inputs can
141 * be NULL).
142 */
143 int countInputs() const { return fInputCount; }
144
145 /**
146 * Returns the input filter at a given index, or NULL if no input is
147 * connected. The indices used are filter-specific.
148 */
149 SkImageFilter* getInput(int i) const {
150 SkASSERT(i < fInputCount);
151 return fInputs[i];
152 }
153
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000154 /**
155 * Returns the crop rectangle of this filter. This is set at construction
156 * time, and determines which pixels from the input image will
157 * be processed. The size of this rectangle should be used as the size
158 * of the destination image. The origin of this rect should be used to
159 * offset access to the input images, and should also be added to the
160 * "offset" parameter in onFilterImage and filterImageGPU(). (The latter
161 * ensures that the resulting buffer is drawn in the correct location.)
162 */
senorblanco@chromium.orgb295fb62013-10-10 13:51:19 +0000163#ifdef SK_CROP_RECT_IS_INT
164 bool cropRectIsSet() const { return !fCropRect.isLargest(); }
165#else
166 bool cropRectIsSet() const { return fCropRect.isSet(); }
167#endif
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000168
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000169protected:
senorblanco@chromium.orgb295fb62013-10-10 13:51:19 +0000170 SkImageFilter(int inputCount, SkImageFilter** inputs, const CropRect* cropRect = NULL);
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000171
senorblanco@chromium.orgc2e8cef2012-10-22 15:07:14 +0000172 // Convenience constructor for 1-input filters.
senorblanco@chromium.orgb295fb62013-10-10 13:51:19 +0000173 explicit SkImageFilter(SkImageFilter* input, const CropRect* cropRect = NULL);
senorblanco@chromium.orgc2e8cef2012-10-22 15:07:14 +0000174
175 // Convenience constructor for 2-input filters.
senorblanco@chromium.orgb295fb62013-10-10 13:51:19 +0000176 SkImageFilter(SkImageFilter* input1, SkImageFilter* input2, const CropRect* cropRect = NULL);
senorblanco@chromium.org9f25de72012-10-10 20:36:13 +0000177
178 virtual ~SkImageFilter();
179
180 explicit SkImageFilter(SkFlattenableReadBuffer& rb);
181
182 virtual void flatten(SkFlattenableWriteBuffer& wb) const SK_OVERRIDE;
reed@google.com32d25b62011-12-20 16:19:00 +0000183
184 // Default impl returns false
reed@google.com76dd2772012-01-05 21:15:07 +0000185 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&,
reed@google.com15356a62011-11-03 19:29:08 +0000186 SkBitmap* result, SkIPoint* offset);
reed@google.com32d25b62011-12-20 16:19:00 +0000187 // Default impl copies src into dst and returns true
188 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*);
reed@google.com894aa9a2011-09-23 14:49:49 +0000189
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +0000190 // Applies "matrix" to the crop rect, and sets "rect" to the intersection of
191 // "rect" and the transformed crop rect. If there is no overlap, returns
192 // false and leaves "rect" unchanged.
193 bool applyCropRect(SkIRect* rect, const SkMatrix& matrix) const;
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000194
reed@google.com894aa9a2011-09-23 14:49:49 +0000195private:
senorblanco@chromium.org54e01b22011-11-16 18:20:47 +0000196 typedef SkFlattenable INHERITED;
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000197 int fInputCount;
senorblanco@chromium.org9f25de72012-10-10 20:36:13 +0000198 SkImageFilter** fInputs;
senorblanco@chromium.orgb295fb62013-10-10 13:51:19 +0000199 CropRect fCropRect;
reed@google.com894aa9a2011-09-23 14:49:49 +0000200};
201
202#endif