epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * Copyright 2010 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 10 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 11 | #ifndef SkGpuDevice_DEFINED |
| 12 | #define SkGpuDevice_DEFINED |
| 13 | |
| 14 | #include "SkGr.h" |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 15 | #include "SkBitmap.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 16 | #include "SkDevice.h" |
| 17 | #include "SkRegion.h" |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 18 | #include "GrContext.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 19 | |
| 20 | struct SkDrawProcs; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 21 | struct GrSkDrawProcs; |
| 22 | class GrTextContext; |
| 23 | |
| 24 | /** |
| 25 | * Subclass of SkDevice, which directs all drawing to the GrGpu owned by the |
| 26 | * canvas. |
| 27 | */ |
bsalomon@google.com | 9182610 | 2011-03-21 19:51:57 +0000 | [diff] [blame] | 28 | class SK_API SkGpuDevice : public SkDevice { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 29 | public: |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 30 | /** |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 31 | * New device that will create an offscreen renderTarget based on the |
skia.committer@gmail.com | f3dc199 | 2012-11-01 02:01:27 +0000 | [diff] [blame] | 32 | * config, width, height, and sampleCount. The device's storage will not |
| 33 | * count against the GrContext's texture cache budget. The device's pixels |
robertphillips@google.com | d3eb336 | 2012-10-31 13:56:35 +0000 | [diff] [blame] | 34 | * will be uninitialized. |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 35 | */ |
robertphillips@google.com | d3eb336 | 2012-10-31 13:56:35 +0000 | [diff] [blame] | 36 | SkGpuDevice(GrContext*, SkBitmap::Config, int width, int height, int sampleCount = 0); |
reed@google.com | af951c9 | 2011-06-16 19:10:39 +0000 | [diff] [blame] | 37 | |
| 38 | /** |
| 39 | * New device that will render to the specified renderTarget. |
| 40 | */ |
| 41 | SkGpuDevice(GrContext*, GrRenderTarget*); |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 42 | |
| 43 | /** |
bsalomon@google.com | f9046fe | 2011-06-17 15:10:21 +0000 | [diff] [blame] | 44 | * New device that will render to the texture (as a rendertarget). |
| 45 | * The GrTexture's asRenderTarget() must be non-NULL or device will not |
| 46 | * function. |
| 47 | */ |
| 48 | SkGpuDevice(GrContext*, GrTexture*); |
| 49 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 50 | virtual ~SkGpuDevice(); |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 51 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 52 | GrContext* context() const { return fContext; } |
| 53 | |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 54 | virtual SkGpuRenderTarget* accessRenderTarget() SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 55 | |
| 56 | // overrides from SkDevice |
| 57 | |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 58 | virtual void clear(SkColor color) SK_OVERRIDE; |
bsalomon@google.com | d58a1cd | 2011-11-10 20:57:43 +0000 | [diff] [blame] | 59 | virtual void writePixels(const SkBitmap& bitmap, int x, int y, |
| 60 | SkCanvas::Config8888 config8888) SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 61 | |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 62 | virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 63 | virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 64 | const SkPoint[], const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 65 | virtual void drawRect(const SkDraw&, const SkRect& r, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 66 | const SkPaint& paint) SK_OVERRIDE; |
jvanverth@google.com | 46d3d39 | 2013-01-22 13:34:01 +0000 | [diff] [blame] | 67 | virtual void drawOval(const SkDraw&, const SkRect& oval, |
| 68 | const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 69 | virtual void drawPath(const SkDraw&, const SkPath& path, |
| 70 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 71 | bool pathIsMutable) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 72 | virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
| 73 | const SkIRect* srcRectOrNull, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 74 | const SkMatrix&, const SkPaint&) SK_OVERRIDE; |
reed@google.com | 33535f3 | 2012-09-25 15:37:50 +0000 | [diff] [blame] | 75 | virtual void drawBitmapRect(const SkDraw&, const SkBitmap&, |
| 76 | const SkRect* srcOrNull, const SkRect& dst, |
| 77 | const SkPaint& paint) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 78 | virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, |
| 79 | int x, int y, const SkPaint& paint); |
| 80 | virtual void drawText(const SkDraw&, const void* text, size_t len, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 81 | SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 82 | virtual void drawPosText(const SkDraw&, const void* text, size_t len, |
| 83 | const SkScalar pos[], SkScalar constY, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 84 | int scalarsPerPos, const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 85 | virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
| 86 | const SkPath& path, const SkMatrix* matrix, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 87 | const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 88 | virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, |
| 89 | const SkPoint verts[], const SkPoint texs[], |
| 90 | const SkColor colors[], SkXfermode* xmode, |
| 91 | const uint16_t indices[], int indexCount, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 92 | const SkPaint&) SK_OVERRIDE; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 93 | virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y, |
reed@google.com | 75d939b | 2011-12-07 15:07:23 +0000 | [diff] [blame] | 94 | const SkPaint&) SK_OVERRIDE; |
| 95 | virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 96 | |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 97 | virtual void flush(); |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 98 | |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 99 | virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE; |
| 100 | virtual void onDetachFromCanvas() SK_OVERRIDE; |
| 101 | |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 102 | /** |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 103 | * Make's this device's rendertarget current in the underlying 3D API. |
| 104 | * Also implicitly flushes. |
| 105 | */ |
| 106 | virtual void makeRenderTargetCurrent(); |
| 107 | |
reed@google.com | 8926b16 | 2012-03-23 15:36:36 +0000 | [diff] [blame] | 108 | virtual bool canHandleImageFilter(SkImageFilter*) SK_OVERRIDE; |
| 109 | virtual bool filterImage(SkImageFilter*, const SkBitmap&, const SkMatrix&, |
| 110 | SkBitmap*, SkIPoint*) SK_OVERRIDE; |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 111 | |
bsalomon@google.com | 84405e0 | 2012-03-05 19:57:21 +0000 | [diff] [blame] | 112 | class SkAutoCachedTexture; // used internally |
| 113 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 114 | protected: |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 115 | // overrides from SkDevice |
bsalomon@google.com | 910267d | 2011-11-02 20:06:25 +0000 | [diff] [blame] | 116 | virtual bool onReadPixels(const SkBitmap& bitmap, |
bsalomon@google.com | 6850eab | 2011-11-03 20:29:47 +0000 | [diff] [blame] | 117 | int x, int y, |
| 118 | SkCanvas::Config8888 config8888) SK_OVERRIDE; |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 119 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 120 | private: |
| 121 | GrContext* fContext; |
bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 122 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 123 | GrSkDrawProcs* fDrawProcs; |
| 124 | |
robertphillips@google.com | 641f8b1 | 2012-07-31 19:15:58 +0000 | [diff] [blame] | 125 | GrClipData fClipData; |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 126 | |
bsalomon@google.com | a6926b1 | 2012-10-10 15:25:50 +0000 | [diff] [blame] | 127 | // state for our render-target |
bsalomon@google.com | 50398bf | 2011-07-26 20:45:30 +0000 | [diff] [blame] | 128 | GrRenderTarget* fRenderTarget; |
| 129 | bool fNeedClear; |
reed@google.com | 7b201d2 | 2011-01-11 18:59:23 +0000 | [diff] [blame] | 130 | |
bsalomon@google.com | f9046fe | 2011-06-17 15:10:21 +0000 | [diff] [blame] | 131 | // called from rt and tex cons |
bsalomon@google.com | 8090e65 | 2012-08-28 15:07:11 +0000 | [diff] [blame] | 132 | void initFromRenderTarget(GrContext*, GrRenderTarget*, bool cached); |
bsalomon@google.com | f9046fe | 2011-06-17 15:10:21 +0000 | [diff] [blame] | 133 | |
bsalomon@google.com | 06cd732 | 2012-03-30 18:45:35 +0000 | [diff] [blame] | 134 | // used by createCompatibleDevice |
robertphillips@google.com | 1f47f4f | 2012-08-16 14:49:16 +0000 | [diff] [blame] | 135 | SkGpuDevice(GrContext*, GrTexture* texture, bool needClear); |
bsalomon@google.com | 06cd732 | 2012-03-30 18:45:35 +0000 | [diff] [blame] | 136 | |
robertphillips@google.com | 54823c2 | 2012-07-03 19:12:29 +0000 | [diff] [blame] | 137 | // override from SkDevice |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 138 | virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config, |
| 139 | int width, int height, |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 140 | bool isOpaque, |
robertphillips@google.com | 49d9fd5 | 2012-05-23 11:44:08 +0000 | [diff] [blame] | 141 | Usage usage) SK_OVERRIDE; |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 142 | |
bsalomon@google.com | 5782d71 | 2011-01-21 21:03:59 +0000 | [diff] [blame] | 143 | SkDrawProcs* initDrawForText(GrTextContext*); |
bsalomon@google.com | c6cf723 | 2011-02-17 16:43:10 +0000 | [diff] [blame] | 144 | bool bindDeviceAsTexture(GrPaint* paint); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 145 | |
bsalomon@google.com | a99226e | 2012-10-12 15:01:38 +0000 | [diff] [blame] | 146 | // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override |
| 147 | // SkDraw's matrix and draw in device coords. |
| 148 | void prepareDraw(const SkDraw&, bool forceIdentity); |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 149 | |
| 150 | /** |
| 151 | * Implementation for both drawBitmap and drawBitmapRect. |
| 152 | */ |
skia.committer@gmail.com | 22b460c | 2012-09-29 02:01:02 +0000 | [diff] [blame] | 153 | void drawBitmapCommon(const SkDraw&, |
robertphillips@google.com | bac6b05 | 2012-09-28 18:06:49 +0000 | [diff] [blame] | 154 | const SkBitmap& bitmap, |
| 155 | const SkRect* srcRectPtr, |
skia.committer@gmail.com | 22b460c | 2012-09-29 02:01:02 +0000 | [diff] [blame] | 156 | const SkMatrix&, |
robertphillips@google.com | bac6b05 | 2012-09-28 18:06:49 +0000 | [diff] [blame] | 157 | const SkPaint&); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 158 | |
bsalomon@google.com | f4a9c82 | 2012-03-16 14:02:46 +0000 | [diff] [blame] | 159 | /** |
bsalomon@google.com | 3ab43d5 | 2012-10-11 19:39:09 +0000 | [diff] [blame] | 160 | * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's |
| 161 | * matrix has already been set on GrContext |
| 162 | */ |
| 163 | bool shouldTileBitmap(const SkBitmap& bitmap, |
| 164 | const GrTextureParams& sampler, |
| 165 | const SkRect* srcRectPtr) const; |
| 166 | void internalDrawBitmap(const SkBitmap&, |
| 167 | const SkRect&, |
| 168 | const SkMatrix&, |
| 169 | const GrTextureParams& params, |
| 170 | GrPaint* grPaint); |
| 171 | void drawTiledBitmap(const SkBitmap& bitmap, |
| 172 | const SkRect& srcRect, |
| 173 | const SkMatrix& m, |
| 174 | const GrTextureParams& params, |
| 175 | GrPaint* grPaint); |
| 176 | |
| 177 | /** |
bsalomon@google.com | f4a9c82 | 2012-03-16 14:02:46 +0000 | [diff] [blame] | 178 | * Returns non-initialized instance. |
| 179 | */ |
| 180 | GrTextContext* getTextContext(); |
| 181 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 182 | typedef SkDevice INHERITED; |
| 183 | }; |
| 184 | |
| 185 | #endif |