blob: ffc24a8c4bade32852a3c4eb9c067f91c567e887 [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.com2e7b43d2011-01-18 20:57:22 +000030 /**
reed@google.comaf951c92011-06-16 19:10:39 +000031 * New device that will create an offscreen renderTarget based on the
bsalomon@google.com06cd7322012-03-30 18:45:35 +000032 * config, width, height. The device's storage will not count against
33 * the GrContext's texture cache budget. The device's pixels will be
34 * uninitialized.
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000035 */
bsalomon@google.com06cd7322012-03-30 18:45:35 +000036 SkGpuDevice(GrContext*, SkBitmap::Config, int width, int height);
reed@google.comaf951c92011-06-16 19:10:39 +000037
38 /**
39 * New device that will render to the specified renderTarget.
40 */
41 SkGpuDevice(GrContext*, GrRenderTarget*);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000042
43 /**
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000044 * 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.comac10a2d2010-12-22 21:39:39 +000050 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000051
reed@google.comac10a2d2010-12-22 21:39:39 +000052 GrContext* context() const { return fContext; }
53
54 /**
reed@google.comac10a2d2010-12-22 21:39:39 +000055 * Override from SkGpuDevice, so we can set our FBO to be the render target
56 * The canvas parameter must be a SkGpuCanvas
57 */
bsalomon@google.comd302f142011-03-03 13:54:13 +000058 virtual void gainFocus(SkCanvas*, const SkMatrix&, const SkRegion&,
reed@google.com75d939b2011-12-07 15:07:23 +000059 const SkClipStack& clipStack) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000060
reed@google.com75d939b2011-12-07 15:07:23 +000061 virtual SkGpuRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000062
63 // overrides from SkDevice
64
reed@google.com75d939b2011-12-07 15:07:23 +000065 virtual void clear(SkColor color) SK_OVERRIDE;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000066 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
67 SkCanvas::Config8888 config8888) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +000068
tomhudson@google.com8a0b0292011-09-13 14:41:06 +000069 virtual void setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
reed@google.com75d939b2011-12-07 15:07:23 +000070 const SkClipStack&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000071
reed@google.com75d939b2011-12-07 15:07:23 +000072 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000073 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
reed@google.com75d939b2011-12-07 15:07:23 +000074 const SkPoint[], const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000075 virtual void drawRect(const SkDraw&, const SkRect& r,
reed@google.com75d939b2011-12-07 15:07:23 +000076 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000077 virtual void drawPath(const SkDraw&, const SkPath& path,
78 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000079 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000080 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
81 const SkIRect* srcRectOrNull,
reed@google.com75d939b2011-12-07 15:07:23 +000082 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000083 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
84 int x, int y, const SkPaint& paint);
85 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +000086 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000087 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
88 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +000089 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000090 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
91 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +000092 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000093 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
94 const SkPoint verts[], const SkPoint texs[],
95 const SkColor colors[], SkXfermode* xmode,
96 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +000097 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000098 virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +000099 const SkPaint&) SK_OVERRIDE;
100 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000101
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000102 virtual void flush();
reed@google.com7b201d22011-01-11 18:59:23 +0000103
104 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000105 * Make's this device's rendertarget current in the underlying 3D API.
106 * Also implicitly flushes.
107 */
108 virtual void makeRenderTargetCurrent();
109
reed@google.com8926b162012-03-23 15:36:36 +0000110 virtual bool canHandleImageFilter(SkImageFilter*) SK_OVERRIDE;
111 virtual bool filterImage(SkImageFilter*, const SkBitmap&, const SkMatrix&,
112 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000113
bsalomon@google.com84405e02012-03-05 19:57:21 +0000114 class SkAutoCachedTexture; // used internally
115
reed@google.comac10a2d2010-12-22 21:39:39 +0000116protected:
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000117 typedef GrContext::TextureCacheEntry TexCache;
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000118 TexCache lockCachedTexture(const SkBitmap& bitmap,
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000119 const GrSamplerState* sampler);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000120 bool isBitmapInTextureCache(const SkBitmap& bitmap,
121 const GrSamplerState& sampler) const;
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000122 void unlockCachedTexture(TexCache);
reed@google.comac10a2d2010-12-22 21:39:39 +0000123
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
134 // state for our offscreen render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000135 TexCache fCache;
136 GrTexture* fTexture;
137 GrRenderTarget* fRenderTarget;
138 bool fNeedClear;
139 bool fNeedPrepareRenderTarget;
reed@google.com7b201d22011-01-11 18:59:23 +0000140
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000141 GrTextContext* fTextContext;
142
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000143 // called from rt and tex cons
144 void initFromRenderTarget(GrContext*, GrRenderTarget*);
145
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000146 // used by createCompatibleDevice
147 SkGpuDevice(GrContext*, GrTexture* texture, TexCache, bool needClear);
148
bsalomon@google.come97f0852011-06-17 13:10:25 +0000149 // override from SkDevice
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000150 virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config,
151 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +0000152 bool isOpaque,
153 Usage usage);
154
bsalomon@google.com5782d712011-01-21 21:03:59 +0000155 SkDrawProcs* initDrawForText(GrTextContext*);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000156 bool bindDeviceAsTexture(GrPaint* paint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000157
158 void prepareRenderTarget(const SkDraw&);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000159 bool shouldTileBitmap(const SkBitmap& bitmap,
160 const GrSamplerState& sampler,
161 const SkIRect* srcRectPtr,
162 int* tileSize) const;
reed@google.comac10a2d2010-12-22 21:39:39 +0000163 void internalDrawBitmap(const SkDraw&, const SkBitmap&,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000164 const SkIRect&, const SkMatrix&, GrPaint* grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000165
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000166 /**
167 * Returns non-initialized instance.
168 */
169 GrTextContext* getTextContext();
170
reed@google.comac10a2d2010-12-22 21:39:39 +0000171 typedef SkDevice INHERITED;
172};
173
174#endif
175