blob: 29f59f28df6a46d1edd3ef45ba14aad31536f742 [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"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000016#include "SkBitmapDevice.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000017#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/**
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000025 * Subclass of SkBitmapDevice, which directs all drawing to the GrGpu owned by the
reed@google.comac10a2d2010-12-22 21:39:39 +000026 * canvas.
27 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000028class SK_API SkGpuDevice : public SkBitmapDevice {
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 /**
reed@google.com44699382013-10-31 17:28:30 +000046 * DEPRECATED -- need to make this private, call Create(surface)
reed@google.comaf951c92011-06-16 19:10:39 +000047 * New device that will render to the specified renderTarget.
48 */
49 SkGpuDevice(GrContext*, GrRenderTarget*);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000050
51 /**
reed@google.com44699382013-10-31 17:28:30 +000052 * DEPRECATED -- need to make this private, call Create(surface)
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000053 * New device that will render to the texture (as a rendertarget).
54 * The GrTexture's asRenderTarget() must be non-NULL or device will not
55 * function.
56 */
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
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000063 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000064
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000065 // overrides from SkBaseDevice
robertphillips@google.com07f81a52013-09-17 12:26:23 +000066 virtual uint32_t getDeviceCapabilities() SK_OVERRIDE {
67 return 0;
68 }
69 virtual int width() const SK_OVERRIDE {
70 return NULL == fRenderTarget ? 0 : fRenderTarget->width();
71 }
72 virtual int height() const SK_OVERRIDE {
73 return NULL == fRenderTarget ? 0 : fRenderTarget->height();
74 }
75 virtual void getGlobalBounds(SkIRect* bounds) const SK_OVERRIDE;
skia.committer@gmail.com2291e722013-09-18 07:01:33 +000076 virtual bool isOpaque() const SK_OVERRIDE {
77 return NULL == fRenderTarget ? false
78 : kRGB_565_GrPixelConfig == fRenderTarget->config();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000079 }
80 virtual SkBitmap::Config config() const SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000081
reed@google.com75d939b2011-12-07 15:07:23 +000082 virtual void clear(SkColor color) SK_OVERRIDE;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000083 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
84 SkCanvas::Config8888 config8888) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +000085
reed@google.com75d939b2011-12-07 15:07:23 +000086 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000087 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000088 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000089 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000090 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000091 virtual void drawRRect(const SkDraw&, const SkRRect& r,
92 const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +000093 virtual void drawOval(const SkDraw&, const SkRect& oval,
94 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000095 virtual void drawPath(const SkDraw&, const SkPath& path,
96 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000097 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000098 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
reed@google.com75d939b2011-12-07 15:07:23 +000099 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +0000100 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
101 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000102 const SkPaint& paint,
103 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000104 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
105 int x, int y, const SkPaint& paint);
106 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +0000107 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000108 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
109 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +0000110 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000111 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
112 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +0000113 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000114 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
115 const SkPoint verts[], const SkPoint texs[],
116 const SkColor colors[], SkXfermode* xmode,
117 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000118 const SkPaint&) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000119 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000120 const SkPaint&) SK_OVERRIDE;
121 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000122
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000123 virtual void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000124
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000125 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
126 virtual void onDetachFromCanvas() SK_OVERRIDE;
127
reed@google.com7b201d22011-01-11 18:59:23 +0000128 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000129 * Make's this device's rendertarget current in the underlying 3D API.
130 * Also implicitly flushes.
131 */
132 virtual void makeRenderTargetCurrent();
133
reed@google.com8926b162012-03-23 15:36:36 +0000134 virtual bool canHandleImageFilter(SkImageFilter*) SK_OVERRIDE;
135 virtual bool filterImage(SkImageFilter*, const SkBitmap&, const SkMatrix&,
136 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000137
bsalomon@google.com84405e02012-03-05 19:57:21 +0000138 class SkAutoCachedTexture; // used internally
139
reed@google.comac10a2d2010-12-22 21:39:39 +0000140protected:
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000141 // overrides from SkBaseDevice
bsalomon@google.com910267d2011-11-02 20:06:25 +0000142 virtual bool onReadPixels(const SkBitmap& bitmap,
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000143 int x, int y,
144 SkCanvas::Config8888 config8888) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000145
reed@google.comac10a2d2010-12-22 21:39:39 +0000146private:
147 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000148
reed@google.comac10a2d2010-12-22 21:39:39 +0000149 GrSkDrawProcs* fDrawProcs;
150
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000151 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000152
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000153 // state for our render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000154 GrRenderTarget* fRenderTarget;
155 bool fNeedClear;
reed@google.com7b201d22011-01-11 18:59:23 +0000156
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000157 // called from rt and tex cons
bsalomon@google.com8090e652012-08-28 15:07:11 +0000158 void initFromRenderTarget(GrContext*, GrRenderTarget*, bool cached);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000159
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000160 // used by createCompatibleDevice
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000161 SkGpuDevice(GrContext*, GrTexture* texture, bool needClear);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000162
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000163 // override from SkBaseDevice
164 virtual SkBaseDevice* onCreateCompatibleDevice(SkBitmap::Config config,
165 int width, int height,
166 bool isOpaque,
167 Usage usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000168
bsalomon@google.com5782d712011-01-21 21:03:59 +0000169 SkDrawProcs* initDrawForText(GrTextContext*);
reed@google.comac10a2d2010-12-22 21:39:39 +0000170
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000171 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
172 // SkDraw's matrix and draw in device coords.
173 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000174
175 /**
176 * Implementation for both drawBitmap and drawBitmapRect.
177 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000178 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000179 const SkBitmap& bitmap,
180 const SkRect* srcRectPtr,
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000181 const SkMatrix&,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000182 const SkPaint&,
183 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000184
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000185 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000186 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000187 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000188 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000189
190 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000191 bool shouldTileBitmap(const SkBitmap& bitmap,
192 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000193 const SkRect* srcRectPtr,
194 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000195 int* tileSize,
196 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000197 void internalDrawBitmap(const SkBitmap&,
198 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000199 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000200 const SkPaint& paint,
201 SkCanvas::DrawBitmapRectFlags flags);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000202 void drawTiledBitmap(const SkBitmap& bitmap,
203 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000204 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000205 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000206 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000207 SkCanvas::DrawBitmapRectFlags flags,
208 int tileSize);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000209
210 /**
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000211 * Returns non-initialized instance.
212 */
213 GrTextContext* getTextContext();
214
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000215 typedef SkBitmapDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000216};
217
218#endif