blob: 3ccab51831dca58f17df7bd4a114b49d1da7392e [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;
reed@google.comac10a2d2010-12-22 21:39:39 +000022
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +000023class GrTextContext;
commit-bot@chromium.orgddf2bfb2014-01-30 16:41:23 +000024
reed@google.comac10a2d2010-12-22 21:39:39 +000025/**
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000026 * Subclass of SkBitmapDevice, which directs all drawing to the GrGpu owned by the
reed@google.comac10a2d2010-12-22 21:39:39 +000027 * canvas.
28 */
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000029class SK_API SkGpuDevice : public SkBitmapDevice {
reed@google.comac10a2d2010-12-22 21:39:39 +000030public:
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000031
32 /**
33 * Creates an SkGpuDevice from a GrSurface. This will fail if the surface is not a render
34 * target. The caller owns a ref on the returned device.
35 */
36 static SkGpuDevice* Create(GrSurface* surface);
37
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000038 /**
reed@google.comaf951c92011-06-16 19:10:39 +000039 * New device that will create an offscreen renderTarget based on the
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000040 * ImageInfo and sampleCount. The device's storage will not
41 * count against the GrContext's texture cache budget. The device's pixels
42 * will be uninitialized. On failure, returns NULL.
43 */
44 static SkGpuDevice* Create(GrContext*, const SkImageInfo&, int sampleCount);
45
46#ifdef SK_SUPPORT_LEGACY_COMPATIBLEDEVICE_CONFIG
47 /**
48 * New device that will create an offscreen renderTarget based on the
skia.committer@gmail.comf3dc1992012-11-01 02:01:27 +000049 * config, width, height, and sampleCount. The device's storage will not
50 * count against the GrContext's texture cache budget. The device's pixels
bsalomon@google.com123ac1d2013-03-28 19:18:12 +000051 * will be uninitialized. TODO: This can fail, replace with a factory function.
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000052 */
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000053 SkGpuDevice(GrContext*, SkBitmap::Config, int width, int height, int sampleCount = 0);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +000054#endif
reed@google.comaf951c92011-06-16 19:10:39 +000055
56 /**
reed@google.com44699382013-10-31 17:28:30 +000057 * DEPRECATED -- need to make this private, call Create(surface)
reed@google.comaf951c92011-06-16 19:10:39 +000058 * New device that will render to the specified renderTarget.
59 */
60 SkGpuDevice(GrContext*, GrRenderTarget*);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000061
62 /**
reed@google.com44699382013-10-31 17:28:30 +000063 * DEPRECATED -- need to make this private, call Create(surface)
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000064 * New device that will render to the texture (as a rendertarget).
65 * The GrTexture's asRenderTarget() must be non-NULL or device will not
66 * function.
67 */
68 SkGpuDevice(GrContext*, GrTexture*);
69
reed@google.comac10a2d2010-12-22 21:39:39 +000070 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000071
reed@google.comac10a2d2010-12-22 21:39:39 +000072 GrContext* context() const { return fContext; }
73
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +000074 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000075
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000076 // overrides from SkBaseDevice
robertphillips@google.com07f81a52013-09-17 12:26:23 +000077 virtual uint32_t getDeviceCapabilities() SK_OVERRIDE {
78 return 0;
79 }
80 virtual int width() const SK_OVERRIDE {
81 return NULL == fRenderTarget ? 0 : fRenderTarget->width();
82 }
83 virtual int height() const SK_OVERRIDE {
84 return NULL == fRenderTarget ? 0 : fRenderTarget->height();
85 }
skia.committer@gmail.com2291e722013-09-18 07:01:33 +000086 virtual bool isOpaque() const SK_OVERRIDE {
87 return NULL == fRenderTarget ? false
88 : kRGB_565_GrPixelConfig == fRenderTarget->config();
robertphillips@google.com07f81a52013-09-17 12:26:23 +000089 }
90 virtual SkBitmap::Config config() const SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000091
reed@google.com75d939b2011-12-07 15:07:23 +000092 virtual void clear(SkColor color) SK_OVERRIDE;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000093 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
94 SkCanvas::Config8888 config8888) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +000095
reed@google.com75d939b2011-12-07 15:07:23 +000096 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000097 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000098 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000099 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +0000100 const SkPaint& paint) SK_OVERRIDE;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000101 virtual void drawRRect(const SkDraw&, const SkRRect& r,
102 const SkPaint& paint) SK_OVERRIDE;
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000103 virtual void drawOval(const SkDraw&, const SkRect& oval,
104 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000105 virtual void drawPath(const SkDraw&, const SkPath& path,
106 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +0000107 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000108 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
reed@google.com75d939b2011-12-07 15:07:23 +0000109 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +0000110 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
111 const SkRect* srcOrNull, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000112 const SkPaint& paint,
113 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000114 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
115 int x, int y, const SkPaint& paint);
116 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +0000117 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000118 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
119 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +0000120 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000121 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
122 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +0000123 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000124 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
125 const SkPoint verts[], const SkPoint texs[],
126 const SkColor colors[], SkXfermode* xmode,
127 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +0000128 const SkPaint&) SK_OVERRIDE;
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000129 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000130 const SkPaint&) SK_OVERRIDE;
131 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000132
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000133 virtual void flush() SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000134
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000135 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
136 virtual void onDetachFromCanvas() SK_OVERRIDE;
137
reed@google.com7b201d22011-01-11 18:59:23 +0000138 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000139 * Make's this device's rendertarget current in the underlying 3D API.
140 * Also implicitly flushes.
141 */
142 virtual void makeRenderTargetCurrent();
143
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +0000144 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
145 virtual bool filterImage(const SkImageFilter*, const SkBitmap&, const SkMatrix&,
reed@google.com8926b162012-03-23 15:36:36 +0000146 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000147
bsalomon@google.com84405e02012-03-05 19:57:21 +0000148 class SkAutoCachedTexture; // used internally
149
reed@google.comac10a2d2010-12-22 21:39:39 +0000150protected:
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000151 // overrides from SkBaseDevice
bsalomon@google.com910267d2011-11-02 20:06:25 +0000152 virtual bool onReadPixels(const SkBitmap& bitmap,
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000153 int x, int y,
154 SkCanvas::Config8888 config8888) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000155
reed@google.comac10a2d2010-12-22 21:39:39 +0000156private:
157 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000158
reed@google.comac10a2d2010-12-22 21:39:39 +0000159 GrSkDrawProcs* fDrawProcs;
160
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000161 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000162
commit-bot@chromium.orgcbbc4812014-01-30 22:05:47 +0000163 GrTextContext* fMainTextContext;
164 GrTextContext* fFallbackTextContext;
commit-bot@chromium.orgcc40f062014-01-24 14:38:27 +0000165
bsalomon@google.coma6926b12012-10-10 15:25:50 +0000166 // state for our render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000167 GrRenderTarget* fRenderTarget;
168 bool fNeedClear;
reed@google.com7b201d22011-01-11 18:59:23 +0000169
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000170 // called from rt and tex cons
bsalomon@google.com8090e652012-08-28 15:07:11 +0000171 void initFromRenderTarget(GrContext*, GrRenderTarget*, bool cached);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000172
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000173 // used by createCompatibleDevice
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000174 SkGpuDevice(GrContext*, GrTexture* texture, bool needClear);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000175
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000176 virtual SkBaseDevice* onCreateDevice(const SkImageInfo&, Usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000177
reed@google.com76f10a32014-02-05 15:32:21 +0000178 virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE;
179
bsalomon@google.coma99226e2012-10-12 15:01:38 +0000180 // sets the render target, clip, and matrix on GrContext. Use forceIdenity to override
181 // SkDraw's matrix and draw in device coords.
182 void prepareDraw(const SkDraw&, bool forceIdentity);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000183
184 /**
185 * Implementation for both drawBitmap and drawBitmapRect.
186 */
skia.committer@gmail.com22b460c2012-09-29 02:01:02 +0000187 void drawBitmapCommon(const SkDraw&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000188 const SkBitmap& bitmap,
189 const SkRect* srcRectPtr,
commit-bot@chromium.orga7d89c82014-01-13 14:47:00 +0000190 const SkSize* dstSizePtr, // ignored iff srcRectPtr == NULL
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000191 const SkPaint&,
192 SkCanvas::DrawBitmapRectFlags flags);
reed@google.comac10a2d2010-12-22 21:39:39 +0000193
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000194 /**
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000195 * Helper functions called by drawBitmapCommon. By the time these are called the SkDraw's
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000196 * matrix, clip, and the device's render target has already been set on GrContext.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000197 */
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000198
199 // The tileSize and clippedSrcRect will be valid only if true is returned.
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000200 bool shouldTileBitmap(const SkBitmap& bitmap,
201 const GrTextureParams& sampler,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000202 const SkRect* srcRectPtr,
203 int maxTileSize,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000204 int* tileSize,
205 SkIRect* clippedSrcRect) const;
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000206 void internalDrawBitmap(const SkBitmap&,
207 const SkRect&,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000208 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000209 const SkPaint& paint,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000210 SkCanvas::DrawBitmapRectFlags flags,
211 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000212 void drawTiledBitmap(const SkBitmap& bitmap,
213 const SkRect& srcRect,
commit-bot@chromium.org7edad872013-10-25 14:58:12 +0000214 const SkIRect& clippedSrcRect,
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000215 const GrTextureParams& params,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000216 const SkPaint& paint,
bsalomon@google.comaf562b42013-10-24 17:52:07 +0000217 SkCanvas::DrawBitmapRectFlags flags,
commit-bot@chromium.orgdec61502013-12-02 22:22:35 +0000218 int tileSize,
219 bool bicubic);
bsalomon@google.com3ab43d52012-10-11 19:39:09 +0000220
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000221 typedef SkBitmapDevice INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000222};
223
224#endif