blob: f5613a7fd864a68a5da64a76b04fde4642d167e8 [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
32 * config, width, height.
33 *
bsalomon@google.come97f0852011-06-17 13:10:25 +000034 * usage is a special flag that should only be set by SkCanvas
reed@google.comaf951c92011-06-16 19:10:39 +000035 * internally.
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000036 */
bsalomon@google.come97f0852011-06-17 13:10:25 +000037 SkGpuDevice(GrContext*, SkBitmap::Config,
38 int width, int height,
39 SkDevice::Usage usage = SkDevice::kGeneral_Usage);
reed@google.comaf951c92011-06-16 19:10:39 +000040
41 /**
42 * New device that will render to the specified renderTarget.
43 */
44 SkGpuDevice(GrContext*, GrRenderTarget*);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +000045
46 /**
bsalomon@google.comf9046fe2011-06-17 15:10:21 +000047 * New device that will render to the texture (as a rendertarget).
48 * The GrTexture's asRenderTarget() must be non-NULL or device will not
49 * function.
50 */
51 SkGpuDevice(GrContext*, GrTexture*);
52
reed@google.comac10a2d2010-12-22 21:39:39 +000053 virtual ~SkGpuDevice();
reed@google.com7b201d22011-01-11 18:59:23 +000054
reed@google.comac10a2d2010-12-22 21:39:39 +000055 GrContext* context() const { return fContext; }
56
57 /**
reed@google.comac10a2d2010-12-22 21:39:39 +000058 * Override from SkGpuDevice, so we can set our FBO to be the render target
59 * The canvas parameter must be a SkGpuCanvas
60 */
bsalomon@google.comd302f142011-03-03 13:54:13 +000061 virtual void gainFocus(SkCanvas*, const SkMatrix&, const SkRegion&,
62 const SkClipStack& clipStack);
reed@google.comac10a2d2010-12-22 21:39:39 +000063
bsalomon@google.comd9f826c2011-07-18 15:25:04 +000064 virtual SkGpuRenderTarget* accessRenderTarget() {
65 return (SkGpuRenderTarget*)fRenderTarget;
66 }
reed@google.comac10a2d2010-12-22 21:39:39 +000067
68 // overrides from SkDevice
69
bsalomon@google.com398109c2011-04-14 18:40:27 +000070 virtual void clear(SkColor color);
reed@google.comac10a2d2010-12-22 21:39:39 +000071 virtual bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap);
72 virtual void writePixels(const SkBitmap& bitmap, int x, int y);
reed@google.com7b201d22011-01-11 18:59:23 +000073
tomhudson@google.com8a0b0292011-09-13 14:41:06 +000074 virtual void setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
75 const SkClipStack&);
reed@google.comac10a2d2010-12-22 21:39:39 +000076
77 virtual void drawPaint(const SkDraw&, const SkPaint& paint);
78 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
79 const SkPoint[], const SkPaint& paint);
80 virtual void drawRect(const SkDraw&, const SkRect& r,
81 const SkPaint& paint);
82 virtual void drawPath(const SkDraw&, const SkPath& path,
83 const SkPaint& paint, const SkMatrix* prePathMatrix,
84 bool pathIsMutable);
85 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
86 const SkIRect* srcRectOrNull,
87 const SkMatrix& matrix, const SkPaint& paint);
88 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
89 int x, int y, const SkPaint& paint);
90 virtual void drawText(const SkDraw&, const void* text, size_t len,
91 SkScalar x, SkScalar y, const SkPaint& paint);
92 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
93 const SkScalar pos[], SkScalar constY,
94 int scalarsPerPos, const SkPaint& paint);
95 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
96 const SkPath& path, const SkMatrix* matrix,
97 const SkPaint& paint);
98 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
99 const SkPoint verts[], const SkPoint texs[],
100 const SkColor colors[], SkXfermode* xmode,
101 const uint16_t indices[], int indexCount,
102 const SkPaint& paint);
103 virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y,
104 const SkPaint&);
reed@google.comf67e4cf2011-03-15 20:56:58 +0000105 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*);
reed@google.com7b201d22011-01-11 18:59:23 +0000106
reed@google.comac10a2d2010-12-22 21:39:39 +0000107 virtual void flush() { fContext->flush(false); }
reed@google.com7b201d22011-01-11 18:59:23 +0000108
109 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000110 * Make's this device's rendertarget current in the underlying 3D API.
111 * Also implicitly flushes.
112 */
113 virtual void makeRenderTargetCurrent();
114
115protected:
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000116 typedef GrContext::TextureCacheEntry TexCache;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000117 enum TexType {
118 kBitmap_TexType,
119 kDeviceRenderTarget_TexType,
120 kSaveLayerDeviceRenderTarget_TexType
121 };
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000122 TexCache lockCachedTexture(const SkBitmap& bitmap,
123 const GrSamplerState& sampler,
124 TexType type = kBitmap_TexType);
125 void unlockCachedTexture(TexCache);
reed@google.comac10a2d2010-12-22 21:39:39 +0000126
127 class SkAutoCachedTexture {
128 public:
129 SkAutoCachedTexture();
130 SkAutoCachedTexture(SkGpuDevice* device,
131 const SkBitmap& bitmap,
132 const GrSamplerState& sampler,
133 GrTexture** texture);
134 ~SkAutoCachedTexture();
135
136 GrTexture* set(SkGpuDevice*, const SkBitmap&, const GrSamplerState&);
137
138 private:
139 SkGpuDevice* fDevice;
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000140 TexCache fTex;
reed@google.comac10a2d2010-12-22 21:39:39 +0000141 };
142 friend class SkAutoTexCache;
143
144private:
145 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000146
reed@google.comac10a2d2010-12-22 21:39:39 +0000147 GrSkDrawProcs* fDrawProcs;
148
149 // state for our offscreen render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000150 TexCache fCache;
151 GrTexture* fTexture;
152 GrRenderTarget* fRenderTarget;
153 bool fNeedClear;
154 bool fNeedPrepareRenderTarget;
reed@google.com7b201d22011-01-11 18:59:23 +0000155
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000156 // called from rt and tex cons
157 void initFromRenderTarget(GrContext*, GrRenderTarget*);
158
bsalomon@google.com5782d712011-01-21 21:03:59 +0000159 // doesn't set the texture/sampler/matrix state
160 // caller needs to null out GrPaint's texture if
161 // non-textured drawing is desired.
Scroggod757df22011-05-16 13:11:16 +0000162 // Set constantColor to true if a constant color
163 // will be used. This is an optimization, and can
164 // always be set to false. constantColor should
165 // never be true if justAlpha is true.
bsalomon@google.com5782d712011-01-21 21:03:59 +0000166 bool skPaint2GrPaintNoShader(const SkPaint& skPaint,
167 bool justAlpha,
Scroggod757df22011-05-16 13:11:16 +0000168 GrPaint* grPaint,
169 bool constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000170
171 // uses the SkShader to setup paint, act used to
172 // hold lock on cached texture and free it when
173 // destroyed.
Scroggod757df22011-05-16 13:11:16 +0000174 // If there is no shader, constantColor will
175 // be passed to skPaint2GrPaintNoShader. Otherwise
176 // it is ignored.
bsalomon@google.com5782d712011-01-21 21:03:59 +0000177 bool skPaint2GrPaintShader(const SkPaint& skPaint,
178 SkAutoCachedTexture* act,
179 const SkMatrix& ctm,
Scroggod757df22011-05-16 13:11:16 +0000180 GrPaint* grPaint,
181 bool constantColor);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000182
bsalomon@google.come97f0852011-06-17 13:10:25 +0000183 // override from SkDevice
184 virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config,
185 int width, int height,
186 bool isOpaque,
187 Usage usage);
188
bsalomon@google.com5782d712011-01-21 21:03:59 +0000189 SkDrawProcs* initDrawForText(GrTextContext*);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000190 bool bindDeviceAsTexture(GrPaint* paint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000191
192 void prepareRenderTarget(const SkDraw&);
193 void internalDrawBitmap(const SkDraw&, const SkBitmap&,
bsalomon@google.com5782d712011-01-21 21:03:59 +0000194 const SkIRect&, const SkMatrix&, GrPaint* grPaint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000195
196 typedef SkDevice INHERITED;
197};
198
199#endif
200