blob: 3dc145ca1979a40e966c352312c576193176fb26 [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
reed@google.com76dd2772012-01-05 21:15:07 +000034 class Proxy {
35 public:
reed@google.com8926b162012-03-23 15:36:36 +000036 virtual ~Proxy() {};
37
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000038 virtual SkBaseDevice* createDevice(int width, int height) = 0;
reed@google.com8926b162012-03-23 15:36:36 +000039 // returns true if the proxy can handle this filter natively
40 virtual bool canHandleImageFilter(SkImageFilter*) = 0;
reed@google.com76dd2772012-01-05 21:15:07 +000041 // returns true if the proxy handled the filter itself. if this returns
42 // false then the filter's code will be called.
43 virtual bool filterImage(SkImageFilter*, const SkBitmap& src,
44 const SkMatrix& ctm,
45 SkBitmap* result, SkIPoint* offset) = 0;
46 };
reed@google.com894aa9a2011-09-23 14:49:49 +000047
48 /**
49 * Request a new (result) image to be created from the src image.
50 * If the src has no pixels (isNull()) then the request just wants to
51 * receive the config and width/height of the result.
52 *
53 * The matrix is the current matrix on the canvas.
54 *
55 * Offset is the amount to translate the resulting image relative to the
rmistry@google.comfbfcd562012-08-23 18:09:54 +000056 * src when it is drawn.
reed@google.com894aa9a2011-09-23 14:49:49 +000057 *
58 * If the result image cannot be created, return false, in which case both
59 * the result and offset parameters will be ignored by the caller.
60 */
reed@google.com76dd2772012-01-05 21:15:07 +000061 bool filterImage(Proxy*, const SkBitmap& src, const SkMatrix& ctm,
reed@google.com15356a62011-11-03 19:29:08 +000062 SkBitmap* result, SkIPoint* offset);
63
64 /**
reed@google.com32d25b62011-12-20 16:19:00 +000065 * Given the src bounds of an image, this returns the bounds of the result
66 * image after the filter has been applied.
67 */
68 bool filterBounds(const SkIRect& src, const SkMatrix& ctm, SkIRect* dst);
69
70 /**
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000071 * Returns true if the filter can be expressed a single-pass
bsalomon@google.coma469c282012-10-24 18:28:34 +000072 * GrEffect, used to process this filter on the GPU, or false if
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000073 * not.
rmistry@google.comfbfcd562012-08-23 18:09:54 +000074 *
bsalomon@google.com021fc732012-10-25 12:47:42 +000075 * If effect is non-NULL, a new GrEffect instance is stored
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000076 * in it. The caller assumes ownership of the stage, and it is up to the
77 * caller to unref it.
bsalomon@google.com17fc6512012-11-02 21:45:01 +000078 *
79 * The effect can assume its vertexCoords space maps 1-to-1 with texels
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +000080 * in the texture. "matrix" is a transformation to apply to filter
81 * parameters before they are used in the effect. Note that this function
82 * will be called with (NULL, NULL, SkMatrix::I()) to query for support,
83 * so returning "true" indicates support for all possible matrices.
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000084 */
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +000085 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix) const;
senorblanco@chromium.org894790d2012-07-11 16:01:22 +000086
87 /**
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +000088 * Returns true if the filter can be processed on the GPU. This is most
89 * often used for multi-pass effects, where intermediate results must be
bsalomon@google.com8ea78d82012-10-24 20:11:30 +000090 * rendered to textures. For single-pass effects, use asNewEffect().
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +000091 * The default implementation returns asNewEffect(NULL, NULL, SkMatrix::I()).
reed@google.com15356a62011-11-03 19:29:08 +000092 */
senorblanco@chromium.org302cffb2012-08-01 20:16:34 +000093 virtual bool canFilterImageGPU() const;
reed@google.com894aa9a2011-09-23 14:49:49 +000094
senorblanco@chromium.org05054f12012-03-02 21:05:45 +000095 /**
skia.committer@gmail.com32840172013-04-09 07:01:27 +000096 * Process this image filter on the GPU. This is most often used for
senorblanco@chromium.orgd043cce2013-04-08 19:43:22 +000097 * multi-pass effects, where intermediate results must be rendered to
98 * textures. For single-pass effects, use asNewEffect(). src is the
99 * source image for processing, as a texture-backed bitmap. result is
100 * the destination bitmap, which should contain a texture-backed pixelref
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +0000101 * on success. offset is the amount to translate the resulting image
commit-bot@chromium.org7b320702013-07-10 21:22:18 +0000102 * relative to the src when it is drawn. The default implementation does
103 * single-pass processing using asNewEffect().
senorblanco@chromium.org05054f12012-03-02 21:05:45 +0000104 */
commit-bot@chromium.org1aa54bf2013-08-05 16:53:50 +0000105 virtual bool filterImageGPU(Proxy*, const SkBitmap& src, const SkMatrix& ctm,
106 SkBitmap* result, SkIPoint* offset);
senorblanco@chromium.org05054f12012-03-02 21:05:45 +0000107
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000108 /**
sugoi@google.coma1c511b2013-02-21 15:02:28 +0000109 * Returns whether this image filter is a color filter and puts the color filter into the
sugoi@google.com4b6d4322013-02-21 20:26:50 +0000110 * "filterPtr" parameter if it can. Does nothing otherwise.
111 * If this returns false, then the filterPtr is unchanged.
112 * If this returns true, then if filterPtr is not null, it must be set to a ref'd colorfitler
113 * (i.e. it may not be set to NULL).
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000114 */
sugoi@google.com4b6d4322013-02-21 20:26:50 +0000115 virtual bool asColorFilter(SkColorFilter** filterPtr) const;
senorblanco@chromium.org9f25de72012-10-10 20:36:13 +0000116
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000117 /**
118 * Returns the number of inputs this filter will accept (some inputs can
119 * be NULL).
120 */
121 int countInputs() const { return fInputCount; }
122
123 /**
124 * Returns the input filter at a given index, or NULL if no input is
125 * connected. The indices used are filter-specific.
126 */
127 SkImageFilter* getInput(int i) const {
128 SkASSERT(i < fInputCount);
129 return fInputs[i];
130 }
131
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000132 /**
133 * Returns the crop rectangle of this filter. This is set at construction
134 * time, and determines which pixels from the input image will
135 * be processed. The size of this rectangle should be used as the size
136 * of the destination image. The origin of this rect should be used to
137 * offset access to the input images, and should also be added to the
138 * "offset" parameter in onFilterImage and filterImageGPU(). (The latter
139 * ensures that the resulting buffer is drawn in the correct location.)
140 */
141 const SkIRect& cropRect() const { return fCropRect; }
142
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000143protected:
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000144 SkImageFilter(int inputCount, SkImageFilter** inputs, const SkIRect* cropRect = NULL);
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000145
senorblanco@chromium.orgc2e8cef2012-10-22 15:07:14 +0000146 // Convenience constructor for 1-input filters.
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000147 explicit SkImageFilter(SkImageFilter* input, const SkIRect* cropRect = NULL);
senorblanco@chromium.orgc2e8cef2012-10-22 15:07:14 +0000148
149 // Convenience constructor for 2-input filters.
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000150 SkImageFilter(SkImageFilter* input1, SkImageFilter* input2, const SkIRect* cropRect = NULL);
senorblanco@chromium.org9f25de72012-10-10 20:36:13 +0000151
152 virtual ~SkImageFilter();
153
154 explicit SkImageFilter(SkFlattenableReadBuffer& rb);
155
156 virtual void flatten(SkFlattenableWriteBuffer& wb) const SK_OVERRIDE;
reed@google.com32d25b62011-12-20 16:19:00 +0000157
158 // Default impl returns false
reed@google.com76dd2772012-01-05 21:15:07 +0000159 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&,
reed@google.com15356a62011-11-03 19:29:08 +0000160 SkBitmap* result, SkIPoint* offset);
reed@google.com32d25b62011-12-20 16:19:00 +0000161 // Default impl copies src into dst and returns true
162 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*);
reed@google.com894aa9a2011-09-23 14:49:49 +0000163
senorblanco@chromium.orgfbaea532013-08-27 21:37:01 +0000164 // Applies "matrix" to the crop rect, and sets "rect" to the intersection of
165 // "rect" and the transformed crop rect. If there is no overlap, returns
166 // false and leaves "rect" unchanged.
167 bool applyCropRect(SkIRect* rect, const SkMatrix& matrix) const;
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000168
reed@google.com894aa9a2011-09-23 14:49:49 +0000169private:
senorblanco@chromium.org54e01b22011-11-16 18:20:47 +0000170 typedef SkFlattenable INHERITED;
senorblanco@chromium.org8d21f6c2012-10-12 19:14:06 +0000171 int fInputCount;
senorblanco@chromium.org9f25de72012-10-10 20:36:13 +0000172 SkImageFilter** fInputs;
senorblanco@chromium.org194d7752013-07-24 22:19:24 +0000173 SkIRect fCropRect;
reed@google.com894aa9a2011-09-23 14:49:49 +0000174};
175
176#endif