blob: 8aa7d4aac8def1ebf1e8ff27c892d3ac75c78b04 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * 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.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#ifndef SkGpuDevice_DEFINED
12#define SkGpuDevice_DEFINED
13
14#include "SkGr.h"
reed@google.comaf951c92011-06-16 19:10:39 +000015#include "SkBitmap.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000016#include "SkDevice.h"
17#include "SkRegion.h"
bsalomon@google.com50398bf2011-07-26 20:45:30 +000018#include "GrContext.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000019
20struct SkDrawProcs;
reed@google.comac10a2d2010-12-22 21:39:39 +000021struct GrSkDrawProcs;
22class GrTextContext;
23
24/**
25 * Subclass of SkDevice, which directs all drawing to the GrGpu owned by the
26 * canvas.
27 */
bsalomon@google.com91826102011-03-21 19:51:57 +000028class SK_API SkGpuDevice : public SkDevice {
reed@google.comac10a2d2010-12-22 21:39:39 +000029public:
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000030
31 /**
32 * Creates an SkGpuDevice from a GrSurface. This will fail if the surface is not a render
33 * target. The caller owns a ref on the returned device.
34 */
35 static SkGpuDevice* Create(GrSurface* surface);
36
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000037 /**
reed@google.comaf951c92011-06-16 19:10:39 +000038 * New device that will create an offscreen renderTarget based on the
skia.committer@gmail.comf3dc1992012-11-01 02:01:27 +000039 * config, width, height, and sampleCount. The device's storage will not
40 * count against the GrContext's texture cache budget. The device's pixels
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000041 * will be uninitialized. TODO: This can fail, replace with a factory function.
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000042 */
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000043 SkGpuDevice(GrContext*, SkBitmap::Config, int width, int height, int sampleCount = 0);
reed@google.comaf951c92011-06-16 19:10:39 +000044
45 /**
46 * New device that will render to the specified renderTarget.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000047 * DEPRECATED: Use Create(surface)
reed@google.comaf951c92011-06-16 19:10:39 +000048 */
49 SkGpuDevice(GrContext*, GrRenderTarget*);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000050
51 /**
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000052 * New device that will render to the texture (as a rendertarget).
53 * The GrTexture's asRenderTarget() must be non-NULL or device will not
54 * function.
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000055 * DEPRECATED: Use Create(surface)
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000056 */
57 SkGpuDevice(GrContext*, GrTexture*);
58
reed@google.comac10a2d2010-12-22 21:39:39 +000059 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000060
reed@google.comac10a2d2010-12-22 21:39:39 +000061 GrContext* context() const { return fContext; }
62
reed@google.com75d939b2011-12-07 15:07:23 +000063 virtual SkGpuRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000064
65 // overrides from SkDevice
66
reed@google.com75d939b2011-12-07 15:07:23 +000067 virtual void clear(SkColor color) SK_OVERRIDE;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000068 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
69 SkCanvas::Config8888 config8888) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +000070
reed@google.com75d939b2011-12-07 15:07:23 +000071 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000072 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000073 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000074 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000075 const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000076 virtual void drawOval(const SkDraw&, const SkRect& oval,
77 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000078 virtual void drawPath(const SkDraw&, const SkPath& path,
79 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000080 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000081 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
82 const SkIRect* srcRectOrNull,
reed@google.com75d939b2011-12-07 15:07:23 +000083 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +000084 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
85 const SkRect* srcOrNull, const SkRect& dst,
86 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000087 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
88 int x, int y, const SkPaint& paint);
89 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +000090 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000091 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
92 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +000093 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000094 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
95 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +000096 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000097 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
98 const SkPoint verts[], const SkPoint texs[],
99 const SkColor colors[], SkXfermode* xmode,
100 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000101 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000102 virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000103 const SkPaint&) SK_OVERRIDE;
104 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000105
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000106 virtual void flush();
reed@google.com7b201d22011-01-11 18:59:23 +0000107
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000108 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
109 virtual void onDetachFromCanvas() SK_OVERRIDE;
110
reed@google.com7b201d22011-01-11 18:59:23 +0000111 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000112 * Make's this device's rendertarget current in the underlying 3D API.
113 * Also implicitly flushes.
114 */
115 virtual void makeRenderTargetCurrent();
116
reed@google.com8926b162012-03-23 15:36:36 +0000117 virtual bool canHandleImageFilter(SkImageFilter*) SK_OVERRIDE;
118 virtual bool filterImage(SkImageFilter*, const SkBitmap&, const SkMatrix&,
119 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000120
bsalomon@google.com84405e02012-03-05 19:57:21 +0000121 class SkAutoCachedTexture; // used internally
122
reed@google.comac10a2d2010-12-22 21:39:39 +0000123protected:
bsalomon@google.comc6980972011-11-02 19:57:21 +0000124 // overrides from SkDevice
bsalomon@google.com910267d2011-11-02 20:06:25 +0000125 virtual bool onReadPixels(const SkBitmap& bitmap,
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000126 int x, int y,
127 SkCanvas::Config8888 config8888) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000128
reed@google.comac10a2d2010-12-22 21:39:39 +0000129private:
130 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000131
reed@google.comac10a2d2010-12-22 21:39:39 +0000132 GrSkDrawProcs* fDrawProcs;
133
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000134 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000135
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000136 // state for our render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000137 GrRenderTarget* fRenderTarget;
138 bool fNeedClear;
reed@google.com7b201d22011-01-11 18:59:23 +0000139
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000140 // called from rt and tex cons
bsalomon@google.com8090e652012-08-28 15:07:11 +0000141 void initFromRenderTarget(GrContext*, GrRenderTarget*, bool cached);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000142
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000143 // used by createCompatibleDevice
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000144 SkGpuDevice(GrContext*, GrTexture* texture, bool needClear);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000145
robertphillips@google.com54823c22012-07-03 19:12:29 +0000146 // override from SkDevice
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000147 virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config,
148 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +0000149 bool isOpaque,
robertphillips@google.com49d9fd52012-05-23 11:44:08 +0000150 Usage usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000151
bsalomon@google.com5782d712011-01-21 21:03:59 +0000152 SkDrawProcs* initDrawForText(GrTextContext*);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000153 bool bindDeviceAsTexture(GrPaint* paint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000154
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000155 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
156 // SkDraw's matrix and draw in device coords.
157 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000158
159 /**
160 * Implementation for both drawBitmap and drawBitmapRect.
161 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000162 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000163 const SkBitmap& bitmap,
164 const SkRect* srcRectPtr,
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000165 const SkMatrix&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000166 const SkPaint&);
reed@google.comac10a2d2010-12-22 21:39:39 +0000167
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000168 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000169 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
170 * matrix has already been set on GrContext
171 */
172 bool shouldTileBitmap(const SkBitmap& bitmap,
173 const GrTextureParams& sampler,
174 const SkRect* srcRectPtr) const;
175 void internalDrawBitmap(const SkBitmap&,
176 const SkRect&,
177 const SkMatrix&,
178 const GrTextureParams& params,
179 GrPaint* grPaint);
180 void drawTiledBitmap(const SkBitmap& bitmap,
181 const SkRect& srcRect,
182 const SkMatrix& m,
183 const GrTextureParams& params,
184 GrPaint* grPaint);
185
186 /**
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000187 * Returns non-initialized instance.
188 */
189 GrTextContext* getTextContext();
190
reed@google.comac10a2d2010-12-22 21:39:39 +0000191 typedef SkDevice INHERITED;
192};
193
194#endif