blob: c9d54e58e39b05c5fd7b26de58600078aea391c2 [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 */
robertphillips@google.com40a1ae42012-07-13 15:36:15 +000058 virtual void gainFocus(const SkMatrix&, const SkRegion&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000059
reed@google.com75d939b2011-12-07 15:07:23 +000060 virtual SkGpuRenderTarget* accessRenderTarget() SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000061
62 // overrides from SkDevice
63
reed@google.com75d939b2011-12-07 15:07:23 +000064 virtual void clear(SkColor color) SK_OVERRIDE;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000065 virtual void writePixels(const SkBitmap& bitmap, int x, int y,
66 SkCanvas::Config8888 config8888) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +000067
tomhudson@google.com8a0b0292011-09-13 14:41:06 +000068 virtual void setMatrixClip(const SkMatrix& matrix, const SkRegion& clip,
reed@google.com75d939b2011-12-07 15:07:23 +000069 const SkClipStack&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +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;
reed@google.comac10a2d2010-12-22 21:39:39 +000076 virtual void drawPath(const SkDraw&, const SkPath& path,
77 const SkPaint& paint, const SkMatrix* prePathMatrix,
reed@google.com75d939b2011-12-07 15:07:23 +000078 bool pathIsMutable) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000079 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
80 const SkIRect* srcRectOrNull,
reed@google.com75d939b2011-12-07 15:07:23 +000081 const SkMatrix&, const SkPaint&) SK_OVERRIDE;
reed@google.com33535f32012-09-25 15:37:50 +000082 virtual void drawBitmapRect(const SkDraw&, const SkBitmap&,
83 const SkRect* srcOrNull, const SkRect& dst,
84 const SkPaint& paint) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000085 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
86 int x, int y, const SkPaint& paint);
87 virtual void drawText(const SkDraw&, const void* text, size_t len,
reed@google.com75d939b2011-12-07 15:07:23 +000088 SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000089 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
90 const SkScalar pos[], SkScalar constY,
reed@google.com75d939b2011-12-07 15:07:23 +000091 int scalarsPerPos, const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000092 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
93 const SkPath& path, const SkMatrix* matrix,
reed@google.com75d939b2011-12-07 15:07:23 +000094 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +000095 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
96 const SkPoint verts[], const SkPoint texs[],
97 const SkColor colors[], SkXfermode* xmode,
98 const uint16_t indices[], int indexCount,
reed@google.com75d939b2011-12-07 15:07:23 +000099 const SkPaint&) SK_OVERRIDE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000100 virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y,
reed@google.com75d939b2011-12-07 15:07:23 +0000101 const SkPaint&) SK_OVERRIDE;
102 virtual bool filterTextFlags(const SkPaint&, TextFlags*) SK_OVERRIDE;
reed@google.com7b201d22011-01-11 18:59:23 +0000103
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000104 virtual void flush();
reed@google.com7b201d22011-01-11 18:59:23 +0000105
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000106 virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE;
107 virtual void onDetachFromCanvas() SK_OVERRIDE;
108
reed@google.com7b201d22011-01-11 18:59:23 +0000109 /**
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
reed@google.com8926b162012-03-23 15:36:36 +0000115 virtual bool canHandleImageFilter(SkImageFilter*) SK_OVERRIDE;
116 virtual bool filterImage(SkImageFilter*, const SkBitmap&, const SkMatrix&,
117 SkBitmap*, SkIPoint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000118
bsalomon@google.com84405e02012-03-05 19:57:21 +0000119 class SkAutoCachedTexture; // used internally
120
reed@google.comac10a2d2010-12-22 21:39:39 +0000121protected:
bsalomon@google.comfb309512011-11-30 14:13:48 +0000122 bool isBitmapInTextureCache(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000123 const GrTextureParams& params) const;
reed@google.comac10a2d2010-12-22 21:39:39 +0000124
bsalomon@google.comc6980972011-11-02 19:57:21 +0000125 // overrides from SkDevice
bsalomon@google.com910267d2011-11-02 20:06:25 +0000126 virtual bool onReadPixels(const SkBitmap& bitmap,
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000127 int x, int y,
128 SkCanvas::Config8888 config8888) SK_OVERRIDE;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000129
reed@google.comac10a2d2010-12-22 21:39:39 +0000130private:
131 GrContext* fContext;
bsalomon@google.com5782d712011-01-21 21:03:59 +0000132
reed@google.comac10a2d2010-12-22 21:39:39 +0000133 GrSkDrawProcs* fDrawProcs;
134
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000135 GrClipData fClipData;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000136
reed@google.comac10a2d2010-12-22 21:39:39 +0000137 // state for our offscreen render-target
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000138 GrRenderTarget* fRenderTarget;
139 bool fNeedClear;
140 bool fNeedPrepareRenderTarget;
reed@google.com7b201d22011-01-11 18:59:23 +0000141
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000142 // called from rt and tex cons
bsalomon@google.com8090e652012-08-28 15:07:11 +0000143 void initFromRenderTarget(GrContext*, GrRenderTarget*, bool cached);
bsalomon@google.comf9046fe2011-06-17 15:10:21 +0000144
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000145 // used by createCompatibleDevice
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +0000146 SkGpuDevice(GrContext*, GrTexture* texture, bool needClear);
bsalomon@google.com06cd7322012-03-30 18:45:35 +0000147
robertphillips@google.com54823c22012-07-03 19:12:29 +0000148 // override from SkDevice
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000149 virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config,
150 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +0000151 bool isOpaque,
robertphillips@google.com49d9fd52012-05-23 11:44:08 +0000152 Usage usage) SK_OVERRIDE;
bsalomon@google.come97f0852011-06-17 13:10:25 +0000153
bsalomon@google.com5782d712011-01-21 21:03:59 +0000154 SkDrawProcs* initDrawForText(GrTextContext*);
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000155 bool bindDeviceAsTexture(GrPaint* paint);
reed@google.comac10a2d2010-12-22 21:39:39 +0000156
157 void prepareRenderTarget(const SkDraw&);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000158 bool shouldTileBitmap(const SkBitmap& bitmap,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000159 const GrTextureParams& sampler,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000160 const SkRect* srcRectPtr) const;
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000161 void internalDrawBitmap(const SkDraw&,
162 const SkBitmap&,
robertphillips@google.combac6b052012-09-28 18:06:49 +0000163 const SkRect&,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000164 const SkMatrix&,
165 const GrTextureParams& params,
166 GrPaint* grPaint);
robertphillips@google.combac6b052012-09-28 18:06:49 +0000167 void drawTiledBitmap(const SkDraw& draw,
168 const SkBitmap& bitmap,
169 const SkRect& srcRect,
170 const SkMatrix& m,
171 const GrTextureParams& params,
172 GrPaint* grPaint);
173 void drawBitmapCommon(const SkDraw&,
174 const SkBitmap& bitmap,
175 const SkRect* srcRectPtr,
176 const SkMatrix&,
177 const SkPaint&);
reed@google.comac10a2d2010-12-22 21:39:39 +0000178
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000179 /**
180 * Returns non-initialized instance.
181 */
182 GrTextContext* getTextContext();
183
reed@google.comac10a2d2010-12-22 21:39:39 +0000184 typedef SkDevice INHERITED;
185};
186
187#endif
188