blob: c88f469ca0116782790cc3c08a905ba35f23c378 [file] [log] [blame]
bsalomon@google.com27847de2011-02-22 20:59:41 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
bsalomon@google.com27847de2011-02-22 20:59:41 +00006 */
7
8#ifndef GrContext_DEFINED
9#define GrContext_DEFINED
10
robertphillips@google.coma2d71482012-08-01 20:08:47 +000011#include "GrClipData.h"
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000012#include "GrColor.h"
bsalomon@google.com288d9542012-10-17 12:53:54 +000013#include "GrPaint.h"
bsalomon@google.com45a15f52012-12-10 19:10:17 +000014#include "GrPathRendererChain.h"
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +000015#include "GrPoint.h"
rmistry@google.comfbfcd562012-08-23 18:09:54 +000016#include "GrRenderTarget.h"
bsalomon@google.com288d9542012-10-17 12:53:54 +000017#include "GrTexture.h"
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000018#include "SkMatrix.h"
19#include "SkTypes.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000020
jvanverth@google.combfe2b9d2013-09-06 16:57:29 +000021class GrAARectRenderer;
senorblanco@chromium.org3b4dd902012-03-05 20:41:22 +000022class GrAutoScratchTexture;
bsalomon@google.com10e04bf2012-03-30 14:35:04 +000023class GrDrawState;
bsalomon@google.com583a1e32011-08-17 13:42:46 +000024class GrDrawTarget;
bsalomon@google.coma469c282012-10-24 18:28:34 +000025class GrEffect;
bsalomon@google.com27847de2011-02-22 20:59:41 +000026class GrFontCache;
bsalomon@google.com05ef5102011-05-02 21:14:59 +000027class GrGpu;
bsalomon@google.com583a1e32011-08-17 13:42:46 +000028class GrIndexBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +000029class GrIndexBufferAllocPool;
30class GrInOrderDrawBuffer;
robertphillips@google.come930a072014-04-03 00:34:27 +000031class GrLayerCache;
commit-bot@chromium.org81312832013-03-22 18:34:09 +000032class GrOvalRenderer;
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +000033class GrPath;
bsalomon@google.com583a1e32011-08-17 13:42:46 +000034class GrPathRenderer;
bsalomon@google.com50398bf2011-07-26 20:45:30 +000035class GrResourceEntry;
36class GrResourceCache;
bsalomon@google.com558a75b2011-08-08 17:01:14 +000037class GrStencilBuffer;
commit-bot@chromium.org78a10782013-08-21 19:27:48 +000038class GrTestTarget;
bsalomon@google.com288d9542012-10-17 12:53:54 +000039class GrTextureParams;
bsalomon@google.com583a1e32011-08-17 13:42:46 +000040class GrVertexBuffer;
bsalomon@google.com50398bf2011-07-26 20:45:30 +000041class GrVertexBufferAllocPool;
robertphillips@google.com72176b22012-05-23 13:19:12 +000042class GrSoftwarePathRenderer;
sugoi@google.com5f74cf82012-12-17 21:16:45 +000043class SkStrokeRec;
bsalomon@google.com50398bf2011-07-26 20:45:30 +000044
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000045class SK_API GrContext : public SkRefCnt {
bsalomon@google.com27847de2011-02-22 20:59:41 +000046public:
reed@google.comfa35e3d2012-06-26 20:16:17 +000047 SK_DECLARE_INST_COUNT(GrContext)
48
bsalomon@google.com27847de2011-02-22 20:59:41 +000049 /**
bsalomon@google.com16e3dde2012-10-25 18:43:28 +000050 * Creates a GrContext for a backend context.
bsalomon@google.com27847de2011-02-22 20:59:41 +000051 */
bsalomon@google.com16e3dde2012-10-25 18:43:28 +000052 static GrContext* Create(GrBackend, GrBackendContext);
bsalomon@google.com27847de2011-02-22 20:59:41 +000053
bsalomon@google.com27847de2011-02-22 20:59:41 +000054 virtual ~GrContext();
55
56 /**
57 * The GrContext normally assumes that no outsider is setting state
58 * within the underlying 3D API's context/device/whatever. This call informs
59 * the context that the state was modified and it should resend. Shouldn't
60 * be called frequently for good performance.
bsalomon@google.com0a208a12013-06-28 18:57:35 +000061 * The flag bits, state, is dpendent on which backend is used by the
62 * context, either GL or D3D (possible in future).
bsalomon@google.com27847de2011-02-22 20:59:41 +000063 */
bsalomon@google.com0a208a12013-06-28 18:57:35 +000064 void resetContext(uint32_t state = kAll_GrBackendState);
bsalomon@google.com27847de2011-02-22 20:59:41 +000065
bsalomon@google.com8fe72472011-03-30 21:26:44 +000066 /**
robertphillips@google.comcdb426d2012-09-24 19:33:59 +000067 * Callback function to allow classes to cleanup on GrContext destruction.
68 * The 'info' field is filled in with the 'info' passed to addCleanUp.
69 */
70 typedef void (*PFCleanUpFunc)(const GrContext* context, void* info);
71
72 /**
73 * Add a function to be called from within GrContext's destructor.
74 * This gives classes a chance to free resources held on a per context basis.
75 * The 'info' parameter will be stored and passed to the callback function.
76 */
77 void addCleanUp(PFCleanUpFunc cleanUp, void* info) {
78 CleanUpData* entry = fCleanUpData.push();
79
80 entry->fFunc = cleanUp;
81 entry->fInfo = info;
82 }
83
84 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +000085 * Abandons all GPU resources, assumes 3D API state is unknown. Call this
bsalomon@google.com8fe72472011-03-30 21:26:44 +000086 * if you have lost the associated GPU context, and thus internal texture,
87 * buffer, etc. references/IDs are now invalid. Should be called even when
88 * GrContext is no longer going to be used for two reasons:
89 * 1) ~GrContext will not try to free the objects in the 3D API.
90 * 2) If you've created GrResources that outlive the GrContext they will
91 * be marked as invalid (GrResource::isValid()) and won't attempt to
92 * free their underlying resource in the 3D API.
93 * Content drawn since the last GrContext::flush() may be lost.
94 */
95 void contextLost();
bsalomon@google.com27847de2011-02-22 20:59:41 +000096
97 /**
junov@google.com53a55842011-06-08 22:55:10 +000098 * Similar to contextLost, but makes no attempt to reset state.
99 * Use this method when GrContext destruction is pending, but
100 * the graphics context is destroyed first.
101 */
102 void contextDestroyed();
103
104 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000105 * Frees GPU created by the context. Can be called to reduce GPU memory
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000106 * pressure.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000107 */
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000108 void freeGpuResources();
109
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000110 /**
111 * Returns the number of bytes of GPU memory hosted by the texture cache.
112 */
113 size_t getGpuTextureCacheBytes() const;
114
commit-bot@chromium.orgd8a57af2014-03-19 21:19:16 +0000115 /**
116 * Returns the number of resources hosted by the texture cache.
117 */
118 int getGpuTextureCacheResourceCount() const;
119
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000120 ///////////////////////////////////////////////////////////////////////////
121 // Textures
bsalomon@google.com27847de2011-02-22 20:59:41 +0000122
123 /**
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000124 * Creates a new entry, based on the specified key and texture and returns it. The caller owns a
125 * ref on the returned texture which must be balanced by a call to unref.
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000126 *
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000127 * @param params The texture params used to draw a texture may help determine
bsalomon@google.comb8670992012-07-25 21:27:09 +0000128 * the cache entry used. (e.g. different versions may exist
129 * for different wrap modes on GPUs with limited NPOT
130 * texture support). NULL implies clamp wrap modes.
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000131 * @param desc Description of the texture properties.
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000132 * @param cacheID Cache-specific properties (e.g., texture gen ID)
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000133 * @param srcData Pointer to the pixel values.
134 * @param rowBytes The number of bytes between rows of the texture. Zero
135 * implies tightly packed rows.
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000136 * @param cacheKey (optional) If non-NULL, we'll write the cache key we used to cacheKey.
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000137 */
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000138 GrTexture* createTexture(const GrTextureParams* params,
139 const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000140 const GrCacheID& cacheID,
commit-bot@chromium.org50a30432013-10-24 17:44:27 +0000141 void* srcData,
142 size_t rowBytes,
143 GrResourceKey* cacheKey = NULL);
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000144
145 /**
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000146 * Search for an entry based on key and dimensions. If found, ref it and return it. The return
147 * value will be NULL if not found. The caller must balance with a call to unref.
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000148 *
bsalomon@google.comb8670992012-07-25 21:27:09 +0000149 * @param desc Description of the texture properties.
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000150 * @param cacheID Cache-specific properties (e.g., texture gen ID)
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000151 * @param params The texture params used to draw a texture may help determine
bsalomon@google.comb8670992012-07-25 21:27:09 +0000152 * the cache entry used. (e.g. different versions may exist
153 * for different wrap modes on GPUs with limited NPOT
154 * texture support). NULL implies clamp wrap modes.
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000155 */
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000156 GrTexture* findAndRefTexture(const GrTextureDesc& desc,
157 const GrCacheID& cacheID,
158 const GrTextureParams* params);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000159 /**
160 * Determines whether a texture is in the cache. If the texture is found it
161 * will not be locked or returned. This call does not affect the priority of
162 * the texture for deletion.
163 */
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000164 bool isTextureInCache(const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000165 const GrCacheID& cacheID,
bsalomon@google.comb8670992012-07-25 21:27:09 +0000166 const GrTextureParams* params) const;
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000167
168 /**
169 * Enum that determines how closely a returned scratch texture must match
170 * a provided GrTextureDesc.
171 */
172 enum ScratchTexMatch {
173 /**
174 * Finds a texture that exactly matches the descriptor.
175 */
176 kExact_ScratchTexMatch,
177 /**
178 * Finds a texture that approximately matches the descriptor. Will be
179 * at least as large in width and height as desc specifies. If desc
180 * specifies that texture is a render target then result will be a
181 * render target. If desc specifies a render target and doesn't set the
182 * no stencil flag then result will have a stencil. Format and aa level
183 * will always match.
184 */
185 kApprox_ScratchTexMatch
186 };
bsalomon@google.com27847de2011-02-22 20:59:41 +0000187
188 /**
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000189 * Returns a texture matching the desc. It's contents are unknown. Subsequent
190 * requests with the same descriptor are not guaranteed to return the same
191 * texture. The same texture is guaranteed not be returned again until it is
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000192 * unlocked. Call must be balanced with an unlockTexture() call. The caller
193 * owns a ref on the returned texture and must balance with a call to unref.
bsalomon@google.coma39f4042011-04-26 13:18:16 +0000194 *
195 * Textures created by createAndLockTexture() hide the complications of
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000196 * tiling non-power-of-two textures on APIs that don't support this (e.g.
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000197 * unextended GLES2). Tiling a NPOT texture created by lockScratchTexture on
bsalomon@google.coma39f4042011-04-26 13:18:16 +0000198 * such an API will create gaps in the tiling pattern. This includes clamp
199 * mode. (This may be addressed in a future update.)
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000200 */
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000201 GrTexture* lockAndRefScratchTexture(const GrTextureDesc&, ScratchTexMatch match);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000202
203 /**
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000204 * When done with an entry, call unlockScratchTexture(entry) on it, which returns
bsalomon@google.com95ed55a2013-01-24 14:46:47 +0000205 * it to the cache, where it may be purged. This does not unref the texture.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000206 */
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000207 void unlockScratchTexture(GrTexture* texture);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000208
209 /**
robertphillips@google.com50a035d2012-09-07 19:44:33 +0000210 * This method should be called whenever a GrTexture is unreffed or
211 * switched from exclusive to non-exclusive. This
212 * gives the resource cache a chance to discard unneeded textures.
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000213 * Note: this entry point will be removed once totally ref-driven
214 * cache maintenance is implemented
robertphillips@google.com50a035d2012-09-07 19:44:33 +0000215 */
216 void purgeCache();
217
218 /**
robertphillips@google.com94d8f1e2013-12-18 17:25:33 +0000219 * Purge all the unlocked resources from the cache.
220 * This entry point is mainly meant for timing texture uploads
221 * and is not defined in normal builds of Skia.
222 */
223 void purgeAllUnlockedResources();
224
225 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +0000226 * Creates a texture that is outside the cache. Does not count against
227 * cache's budget.
228 */
robertphillips@google.com75b3c962012-06-07 12:08:45 +0000229 GrTexture* createUncachedTexture(const GrTextureDesc& desc,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000230 void* srcData,
231 size_t rowBytes);
232
233 /**
bsalomon@google.comb8670992012-07-25 21:27:09 +0000234 * Returns true if the specified use of an indexed texture is supported.
235 * Support may depend upon whether the texture params indicate that the
236 * texture will be tiled. Passing NULL for the texture params indicates
237 * clamp mode.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000238 */
bsalomon@google.comb8670992012-07-25 21:27:09 +0000239 bool supportsIndex8PixelConfig(const GrTextureParams*,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000240 int width,
241 int height) const;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000242
243 /**
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000244 * Return the current texture cache limits.
245 *
246 * @param maxTextures If non-null, returns maximum number of textures that
247 * can be held in the cache.
248 * @param maxTextureBytes If non-null, returns maximum number of bytes of
249 * texture memory that can be held in the cache.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000250 */
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000251 void getTextureCacheLimits(int* maxTextures, size_t* maxTextureBytes) const;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000252
253 /**
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000254 * Specify the texture cache limits. If the current cache exceeds either
255 * of these, it will be purged (LRU) to keep the cache within these limits.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000256 *
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000257 * @param maxTextures The maximum number of textures that can be held in
258 * the cache.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000259 * @param maxTextureBytes The maximum number of bytes of texture memory
260 * that can be held in the cache.
261 */
bsalomon@google.com07fc0d12012-06-22 15:15:59 +0000262 void setTextureCacheLimits(int maxTextures, size_t maxTextureBytes);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000263
264 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000265 * Return the max width or height of a texture supported by the current GPU.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000266 */
bsalomon@google.com91958362011-06-13 17:58:13 +0000267 int getMaxTextureSize() const;
268
robertphillips@google.com44a91dc2013-07-25 15:32:06 +0000269 /**
skia.committer@gmail.com956b3102013-07-26 07:00:58 +0000270 * Temporarily override the true max texture size. Note: an override
robertphillips@google.com44a91dc2013-07-25 15:32:06 +0000271 * larger then the true max texture size will have no effect.
272 * This entry point is mainly meant for testing texture size dependent
273 * features and is only available if defined outside of Skia (see
274 * bleed GM.
275 */
276 void setMaxTextureSizeOverride(int maxTextureSizeOverride);
277
bsalomon@google.com27847de2011-02-22 20:59:41 +0000278 ///////////////////////////////////////////////////////////////////////////
279 // Render targets
280
281 /**
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000282 * Sets the render target.
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000283 * @param target the render target to set.
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000284 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000285 void setRenderTarget(GrRenderTarget* target) {
286 fRenderTarget.reset(SkSafeRef(target));
287 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000288
289 /**
290 * Gets the current render target.
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000291 * @return the currently bound render target.
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000292 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000293 const GrRenderTarget* getRenderTarget() const { return fRenderTarget.get(); }
294 GrRenderTarget* getRenderTarget() { return fRenderTarget.get(); }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000295
robertphillips@google.comf69a11b2012-06-15 13:58:07 +0000296 GrAARectRenderer* getAARectRenderer() { return fAARectRenderer; }
297
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000298 /**
299 * Can the provided configuration act as a color render target?
300 */
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000301 bool isConfigRenderable(GrPixelConfig config, bool withMSAA) const;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000302
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000303 /**
304 * Return the max width or height of a render target supported by the
305 * current GPU.
306 */
307 int getMaxRenderTargetSize() const;
308
309 /**
310 * Returns the max sample count for a render target. It will be 0 if MSAA
311 * is not supported.
312 */
313 int getMaxSampleCount() const;
314
commit-bot@chromium.orgb471a322014-03-10 07:40:03 +0000315 /**
316 * Returns the recommended sample count for a render target when using this
317 * context.
318 *
319 * @param config the configuration of the render target.
320 * @param dpi the display density in dots per inch.
321 *
322 * @return sample count that should be perform well and have good enough
323 * rendering quality for the display. Alternatively returns 0 if
324 * MSAA is not supported or recommended to be used by default.
325 */
326 int getRecommendedSampleCount(GrPixelConfig config, SkScalar dpi) const;
327
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000328 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000329 // Backend Surfaces
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000330
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000331 /**
bsalomon@google.come269f212011-11-07 13:29:52 +0000332 * Wraps an existing texture with a GrTexture object.
333 *
334 * OpenGL: if the object is a texture Gr may change its GL texture params
335 * when it is drawn.
336 *
337 * @param desc description of the object to create.
338 *
339 * @return GrTexture object or NULL on failure.
340 */
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000341 GrTexture* wrapBackendTexture(const GrBackendTextureDesc& desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000342
343 /**
344 * Wraps an existing render target with a GrRenderTarget object. It is
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000345 * similar to wrapBackendTexture but can be used to draw into surfaces
bsalomon@google.come269f212011-11-07 13:29:52 +0000346 * that are not also textures (e.g. FBO 0 in OpenGL, or an MSAA buffer that
347 * the client will resolve to a texture).
348 *
349 * @param desc description of the object to create.
350 *
351 * @return GrTexture object or NULL on failure.
352 */
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000353 GrRenderTarget* wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000354
bsalomon@google.com27847de2011-02-22 20:59:41 +0000355 ///////////////////////////////////////////////////////////////////////////
356 // Matrix state
357
358 /**
359 * Gets the current transformation matrix.
360 * @return the current matrix.
361 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000362 const SkMatrix& getMatrix() const { return fViewMatrix; }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000363
364 /**
365 * Sets the transformation matrix.
366 * @param m the matrix to set.
367 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000368 void setMatrix(const SkMatrix& m) { fViewMatrix = m; }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000369
370 /**
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000371 * Sets the current transformation matrix to identity.
372 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000373 void setIdentityMatrix() { fViewMatrix.reset(); }
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000374
375 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +0000376 * Concats the current matrix. The passed matrix is applied before the
377 * current matrix.
378 * @param m the matrix to concat.
379 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000380 void concatMatrix(const SkMatrix& m) { fViewMatrix.preConcat(m); }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000381
382
383 ///////////////////////////////////////////////////////////////////////////
384 // Clip state
385 /**
386 * Gets the current clip.
387 * @return the current clip.
388 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000389 const GrClipData* getClip() const { return fClip; }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000390
391 /**
392 * Sets the clip.
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000393 * @param clipData the clip to set.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000394 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000395 void setClip(const GrClipData* clipData) { fClip = clipData; }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000396
bsalomon@google.com27847de2011-02-22 20:59:41 +0000397 ///////////////////////////////////////////////////////////////////////////
398 // Draws
399
400 /**
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000401 * Clear the entire or rect of the render target, ignoring any clips.
402 * @param rect the rect to clear or the whole thing if rect is NULL.
403 * @param color the color to clear to.
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000404 * @param canIgnoreRect allows partial clears to be converted to whole
405 * clears on platforms for which that is cheap
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000406 * @param target if non-NULL, the render target to clear otherwise clear
407 * the current render target
bsalomon@google.com27847de2011-02-22 20:59:41 +0000408 */
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000409 void clear(const SkIRect* rect, GrColor color, bool canIgnoreRect,
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000410 GrRenderTarget* target = NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000411
412 /**
413 * Draw everywhere (respecting the clip) with the paint.
414 */
415 void drawPaint(const GrPaint& paint);
416
417 /**
418 * Draw the rect using a paint.
419 * @param paint describes how to color pixels.
skia.committer@gmail.com26144182013-11-07 07:02:19 +0000420 * @param stroke the stroke information (width, join, cap).
421 * If stroke == NULL, then the rect is filled.
commit-bot@chromium.org6006d0f2013-11-06 10:08:21 +0000422 * Otherwise, if stroke width == 0, then the stroke
skia.committer@gmail.com26144182013-11-07 07:02:19 +0000423 * is always a single pixel thick, else the rect is
commit-bot@chromium.org6006d0f2013-11-06 10:08:21 +0000424 * mitered/beveled stroked based on stroke width.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000425 * @param matrix Optional matrix applied to the rect. Applied before
426 * context's matrix or the paint's matrix.
427 * The rects coords are used to access the paint (through texture matrix)
428 */
429 void drawRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000430 const SkRect&,
commit-bot@chromium.org6006d0f2013-11-06 10:08:21 +0000431 const SkStrokeRec* stroke = NULL,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000432 const SkMatrix* matrix = NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000433
434 /**
bsalomon@google.comc7818882013-03-20 19:19:53 +0000435 * Maps a rect of local coordinates onto the a rect of destination
436 * coordinates. Each rect can optionally be transformed. The localRect
bsalomon@google.com27847de2011-02-22 20:59:41 +0000437 * is stretched over the dstRect. The dstRect is transformed by the
bsalomon@google.comc7818882013-03-20 19:19:53 +0000438 * context's matrix. Additional optional matrices for both rects can be
439 * provided by parameters.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000440 *
bsalomon@google.comc7818882013-03-20 19:19:53 +0000441 * @param paint describes how to color pixels.
442 * @param dstRect the destination rect to draw.
443 * @param localRect rect of local coordinates to be mapped onto dstRect
444 * @param dstMatrix Optional matrix to transform dstRect. Applied before context's matrix.
445 * @param localMatrix Optional matrix to transform localRect.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000446 */
447 void drawRectToRect(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000448 const SkRect& dstRect,
449 const SkRect& localRect,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000450 const SkMatrix* dstMatrix = NULL,
bsalomon@google.comc7818882013-03-20 19:19:53 +0000451 const SkMatrix* localMatrix = NULL);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000452
453 /**
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000454 * Draw a roundrect using a paint.
455 *
456 * @param paint describes how to color pixels.
457 * @param rrect the roundrect to draw
458 * @param stroke the stroke information (width, join, cap)
459 */
commit-bot@chromium.org0a09d712014-04-09 21:26:11 +0000460 void drawRRect(const GrPaint& paint, const SkRRect& rrect, const SkStrokeRec& stroke);
461
462 /**
463 * Shortcut for drawing an SkPath consisting of nested rrects using a paint.
464 * Does not support stroking. The result is undefined if outer does not contain
465 * inner.
466 *
467 * @param paint describes how to color pixels.
468 * @param outer the outer roundrect
469 * @param inner the inner roundrect
470 */
471 void drawDRRect(const GrPaint& paint, const SkRRect& outer, const SkRRect& inner);
472
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000473
474 /**
bsalomon@google.comd302f142011-03-03 13:54:13 +0000475 * Draws a path.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000476 *
477 * @param paint describes how to color pixels.
reed@google.com07f3ee12011-05-16 17:21:57 +0000478 * @param path the path to draw
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000479 * @param stroke the stroke information (width, join, cap)
bsalomon@google.com27847de2011-02-22 20:59:41 +0000480 */
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000481 void drawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke);
reed@google.com07f3ee12011-05-16 17:21:57 +0000482
bsalomon@google.com27847de2011-02-22 20:59:41 +0000483 /**
484 * Draws vertices with a paint.
485 *
486 * @param paint describes how to color pixels.
487 * @param primitiveType primitives type to draw.
488 * @param vertexCount number of vertices.
489 * @param positions array of vertex positions, required.
490 * @param texCoords optional array of texture coordinates used
491 * to access the paint.
492 * @param colors optional array of per-vertex colors, supercedes
493 * the paint's color field.
494 * @param indices optional array of indices. If NULL vertices
495 * are drawn non-indexed.
496 * @param indexCount if indices is non-null then this is the
497 * number of indices.
498 */
499 void drawVertices(const GrPaint& paint,
500 GrPrimitiveType primitiveType,
501 int vertexCount,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000502 const SkPoint positions[],
503 const SkPoint texs[],
bsalomon@google.com27847de2011-02-22 20:59:41 +0000504 const GrColor colors[],
505 const uint16_t indices[],
506 int indexCount);
507
bsalomon@google.com93c96602012-04-27 13:05:21 +0000508 /**
509 * Draws an oval.
510 *
511 * @param paint describes how to color pixels.
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000512 * @param oval the bounding rect of the oval.
513 * @param stroke the stroke information (width, style)
bsalomon@google.com93c96602012-04-27 13:05:21 +0000514 */
515 void drawOval(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000516 const SkRect& oval,
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000517 const SkStrokeRec& stroke);
bsalomon@google.com93c96602012-04-27 13:05:21 +0000518
bsalomon@google.com27847de2011-02-22 20:59:41 +0000519 ///////////////////////////////////////////////////////////////////////////
520 // Misc.
521
522 /**
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000523 * Flags that affect flush() behavior.
524 */
525 enum FlushBits {
526 /**
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000527 * A client may reach a point where it has partially rendered a frame
528 * through a GrContext that it knows the user will never see. This flag
529 * causes the flush to skip submission of deferred content to the 3D API
530 * during the flush.
531 */
532 kDiscard_FlushBit = 0x2,
533 };
534
535 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +0000536 * Call to ensure all drawing to the context has been issued to the
537 * underlying 3D API.
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000538 * @param flagsBitfield flags that control the flushing behavior. See
539 * FlushBits.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000540 */
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000541 void flush(int flagsBitfield = 0);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000542
bsalomon@google.com0342a852012-08-20 19:22:38 +0000543 /**
544 * These flags can be used with the read/write pixels functions below.
545 */
546 enum PixelOpsFlags {
547 /** The GrContext will not be flushed. This means that the read or write may occur before
548 previous draws have executed. */
549 kDontFlush_PixelOpsFlag = 0x1,
550 /** The src for write or dst read is unpremultiplied. This is only respected if both the
551 config src and dst configs are an RGBA/BGRA 8888 format. */
552 kUnpremul_PixelOpsFlag = 0x2,
553 };
554
bsalomon@google.com27847de2011-02-22 20:59:41 +0000555 /**
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000556 * Reads a rectangle of pixels from a render target.
bsalomon@google.com0342a852012-08-20 19:22:38 +0000557 * @param target the render target to read from. NULL means the current render target.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000558 * @param left left edge of the rectangle to read (inclusive)
559 * @param top top edge of the rectangle to read (inclusive)
560 * @param width width of rectangle to read in pixels.
561 * @param height height of rectangle to read in pixels.
562 * @param config the pixel config of the destination buffer
563 * @param buffer memory to read the rectangle into.
bsalomon@google.com0342a852012-08-20 19:22:38 +0000564 * @param rowBytes number of bytes bewtween consecutive rows. Zero means rows are tightly
565 * packed.
566 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000567 *
bsalomon@google.com0342a852012-08-20 19:22:38 +0000568 * @return true if the read succeeded, false if not. The read can fail because of an unsupported
569 * pixel config or because no render target is currently set and NULL was passed for
570 * target.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000571 */
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000572 bool readRenderTargetPixels(GrRenderTarget* target,
573 int left, int top, int width, int height,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000574 GrPixelConfig config, void* buffer,
575 size_t rowBytes = 0,
576 uint32_t pixelOpsFlags = 0);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000577
578 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000579 * Copy the src pixels [buffer, row bytes, pixel config] into a render target at the specified
bsalomon@google.com0342a852012-08-20 19:22:38 +0000580 * rectangle.
581 * @param target the render target to write into. NULL means the current render target.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000582 * @param left left edge of the rectangle to write (inclusive)
583 * @param top top edge of the rectangle to write (inclusive)
584 * @param width width of rectangle to write in pixels.
585 * @param height height of rectangle to write in pixels.
586 * @param config the pixel config of the source buffer
587 * @param buffer memory to read the rectangle from.
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000588 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
bsalomon@google.com0342a852012-08-20 19:22:38 +0000589 * packed.
590 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com9c680582013-02-06 18:17:50 +0000591 *
592 * @return true if the write succeeded, false if not. The write can fail because of an
593 * unsupported combination of target and pixel configs.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000594 */
bsalomon@google.com9c680582013-02-06 18:17:50 +0000595 bool writeRenderTargetPixels(GrRenderTarget* target,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000596 int left, int top, int width, int height,
597 GrPixelConfig config, const void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000598 size_t rowBytes = 0,
599 uint32_t pixelOpsFlags = 0);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000600
601 /**
602 * Reads a rectangle of pixels from a texture.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000603 * @param texture the texture to read from.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000604 * @param left left edge of the rectangle to read (inclusive)
605 * @param top top edge of the rectangle to read (inclusive)
606 * @param width width of rectangle to read in pixels.
607 * @param height height of rectangle to read in pixels.
608 * @param config the pixel config of the destination buffer
609 * @param buffer memory to read the rectangle into.
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000610 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
bsalomon@google.com0342a852012-08-20 19:22:38 +0000611 * packed.
612 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000613 *
bsalomon@google.com0342a852012-08-20 19:22:38 +0000614 * @return true if the read succeeded, false if not. The read can fail because of an unsupported
615 * pixel config.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000616 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000617 bool readTexturePixels(GrTexture* texture,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000618 int left, int top, int width, int height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000619 GrPixelConfig config, void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000620 size_t rowBytes = 0,
621 uint32_t pixelOpsFlags = 0);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000622
623 /**
bsalomon@google.com6f379512011-11-16 20:36:03 +0000624 * Writes a rectangle of pixels to a texture.
625 * @param texture the render target to read from.
626 * @param left left edge of the rectangle to write (inclusive)
627 * @param top top edge of the rectangle to write (inclusive)
628 * @param width width of rectangle to write in pixels.
629 * @param height height of rectangle to write in pixels.
630 * @param config the pixel config of the source buffer
631 * @param buffer memory to read pixels from
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000632 * @param rowBytes number of bytes between consecutive rows. Zero
bsalomon@google.com6f379512011-11-16 20:36:03 +0000633 * means rows are tightly packed.
bsalomon@google.com0342a852012-08-20 19:22:38 +0000634 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com9c680582013-02-06 18:17:50 +0000635 * @return true if the write succeeded, false if not. The write can fail because of an
636 * unsupported combination of texture and pixel configs.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000637 */
bsalomon@google.com9c680582013-02-06 18:17:50 +0000638 bool writeTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000639 int left, int top, int width, int height,
640 GrPixelConfig config, const void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000641 size_t rowBytes,
642 uint32_t pixelOpsFlags = 0);
643
644
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000645 /**
scroggo@google.coma2a31922012-12-07 19:14:45 +0000646 * Copies a rectangle of texels from src to dst. The size of dst is the size of the rectangle
647 * copied and topLeft is the position of the rect in src. The rectangle is clipped to src's
648 * bounds.
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000649 * @param src the texture to copy from.
650 * @param dst the render target to copy to.
scroggo@google.coma2a31922012-12-07 19:14:45 +0000651 * @param topLeft the point in src that will be copied to the top-left of dst. If NULL,
652 * (0, 0) will be used.
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000653 */
scroggo@google.coma2a31922012-12-07 19:14:45 +0000654 void copyTexture(GrTexture* src, GrRenderTarget* dst, const SkIPoint* topLeft = NULL);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000655
656 /**
657 * Resolves a render target that has MSAA. The intermediate MSAA buffer is
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000658 * down-sampled to the associated GrTexture (accessible via
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000659 * GrRenderTarget::asTexture()). Any pending draws to the render target will
660 * be executed before the resolve.
661 *
662 * This is only necessary when a client wants to access the object directly
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000663 * using the backend API directly. GrContext will detect when it must
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000664 * perform a resolve to a GrTexture used as the source of a draw or before
665 * reading pixels back from a GrTexture or GrRenderTarget.
666 */
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000667 void resolveRenderTarget(GrRenderTarget*);
668
669 /**
670 * Provides a perfomance hint that the render target's contents are allowed
671 * to become undefined.
672 */
673 void discardRenderTarget(GrRenderTarget*);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000674
commit-bot@chromium.org03e3e892013-10-02 18:19:17 +0000675#ifdef SK_DEVELOPER
676 void dumpFontCache() const;
677#endif
678
bsalomon@google.com27847de2011-02-22 20:59:41 +0000679 ///////////////////////////////////////////////////////////////////////////
680 // Helpers
681
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000682 class AutoRenderTarget : public ::SkNoncopyable {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000683 public:
684 AutoRenderTarget(GrContext* context, GrRenderTarget* target) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000685 fPrevTarget = context->getRenderTarget();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000686 SkSafeRef(fPrevTarget);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000687 context->setRenderTarget(target);
688 fContext = context;
689 }
690 AutoRenderTarget(GrContext* context) {
691 fPrevTarget = context->getRenderTarget();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000692 SkSafeRef(fPrevTarget);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000693 fContext = context;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000694 }
695 ~AutoRenderTarget() {
robertphillips@google.comccb39502012-10-01 18:25:13 +0000696 if (NULL != fContext) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000697 fContext->setRenderTarget(fPrevTarget);
698 }
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000699 SkSafeUnref(fPrevTarget);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000700 }
701 private:
702 GrContext* fContext;
703 GrRenderTarget* fPrevTarget;
704 };
705
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000706 /**
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000707 * Save/restore the view-matrix in the context. It can optionally adjust a paint to account
708 * for a coordinate system change. Here is an example of how the paint param can be used:
709 *
bsalomon@google.com6f261be2012-10-24 19:07:10 +0000710 * A GrPaint is setup with GrEffects. The stages will have access to the pre-matrix source
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000711 * geometry positions when the draw is executed. Later on a decision is made to transform the
bsalomon@google.com6f261be2012-10-24 19:07:10 +0000712 * geometry to device space on the CPU. The effects now need to know that the space in which
713 * the geometry will be specified has changed.
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000714 *
715 * Note that when restore is called (or in the destructor) the context's matrix will be
716 * restored. However, the paint will not be restored. The caller must make a copy of the
717 * paint if necessary. Hint: use SkTCopyOnFirstWrite if the AutoMatrix is conditionally
718 * initialized.
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000719 */
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000720 class AutoMatrix : public ::SkNoncopyable {
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000721 public:
722 AutoMatrix() : fContext(NULL) {}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000723
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000724 ~AutoMatrix() { this->restore(); }
725
726 /**
727 * Initializes by pre-concat'ing the context's current matrix with the preConcat param.
728 */
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000729 void setPreConcat(GrContext* context, const SkMatrix& preConcat, GrPaint* paint = NULL) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000730 SkASSERT(NULL != context);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000731
732 this->restore();
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000733
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000734 fContext = context;
735 fMatrix = context->getMatrix();
736 this->preConcat(preConcat, paint);
737 }
738
739 /**
740 * Sets the context's matrix to identity. Returns false if the inverse matrix is required to
741 * update a paint but the matrix cannot be inverted.
742 */
743 bool setIdentity(GrContext* context, GrPaint* paint = NULL) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000744 SkASSERT(NULL != context);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000745
746 this->restore();
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000747
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000748 if (NULL != paint) {
bsalomon@google.comc7818882013-03-20 19:19:53 +0000749 if (!paint->localCoordChangeInverse(context->getMatrix())) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000750 return false;
751 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000752 }
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000753 fMatrix = context->getMatrix();
754 fContext = context;
755 context->setIdentityMatrix();
756 return true;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000757 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000758
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000759 /**
760 * Replaces the context's matrix with a new matrix. Returns false if the inverse matrix is
761 * required to update a paint but the matrix cannot be inverted.
762 */
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000763 bool set(GrContext* context, const SkMatrix& newMatrix, GrPaint* paint = NULL) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000764 if (NULL != paint) {
765 if (!this->setIdentity(context, paint)) {
766 return false;
767 }
768 this->preConcat(newMatrix, paint);
769 } else {
770 this->restore();
771 fContext = context;
772 fMatrix = context->getMatrix();
773 context->setMatrix(newMatrix);
774 }
775 return true;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000776 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000777
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000778 /**
779 * If this has been initialized then the context's matrix will be further updated by
780 * pre-concat'ing the preConcat param. The matrix that will be restored remains unchanged.
781 * The paint is assumed to be relative to the context's matrix at the time this call is
782 * made, not the matrix at the time AutoMatrix was first initialized. In other words, this
783 * performs an incremental update of the paint.
784 */
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000785 void preConcat(const SkMatrix& preConcat, GrPaint* paint = NULL) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000786 if (NULL != paint) {
bsalomon@google.comc7818882013-03-20 19:19:53 +0000787 paint->localCoordChange(preConcat);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000788 }
789 fContext->concatMatrix(preConcat);
790 }
791
792 /**
793 * Returns false if never initialized or the inverse matrix was required to update a paint
794 * but the matrix could not be inverted.
795 */
796 bool succeeded() const { return NULL != fContext; }
797
798 /**
799 * If this has been initialized then the context's original matrix is restored.
800 */
801 void restore() {
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000802 if (NULL != fContext) {
803 fContext->setMatrix(fMatrix);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000804 fContext = NULL;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000805 }
806 }
807
808 private:
809 GrContext* fContext;
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000810 SkMatrix fMatrix;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000811 };
bsalomon@google.com27847de2011-02-22 20:59:41 +0000812
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000813 class AutoClip : public ::SkNoncopyable {
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000814 public:
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000815 // This enum exists to require a caller of the constructor to acknowledge that the clip will
816 // initially be wide open. It also could be extended if there are other desirable initial
817 // clip states.
818 enum InitialClip {
819 kWideOpen_InitialClip,
820 };
821
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +0000822 AutoClip(GrContext* context, InitialClip initialState)
robertphillips@google.comccb39502012-10-01 18:25:13 +0000823 : fContext(context) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000824 SkASSERT(kWideOpen_InitialClip == initialState);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000825 fNewClipData.fClipStack = &fNewClipStack;
robertphillips@google.comccb39502012-10-01 18:25:13 +0000826
827 fOldClip = context->getClip();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000828 context->setClip(&fNewClipData);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000829 }
830
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000831 AutoClip(GrContext* context, const SkRect& newClipRect)
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000832 : fContext(context)
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000833 , fNewClipStack(newClipRect) {
834 fNewClipData.fClipStack = &fNewClipStack;
835
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000836 fOldClip = fContext->getClip();
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000837 fContext->setClip(&fNewClipData);
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000838 }
839
840 ~AutoClip() {
841 if (NULL != fContext) {
842 fContext->setClip(fOldClip);
843 }
844 }
845 private:
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000846 GrContext* fContext;
847 const GrClipData* fOldClip;
848
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000849 SkClipStack fNewClipStack;
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000850 GrClipData fNewClipData;
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000851 };
852
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000853 class AutoWideOpenIdentityDraw {
854 public:
855 AutoWideOpenIdentityDraw(GrContext* ctx, GrRenderTarget* rt)
856 : fAutoClip(ctx, AutoClip::kWideOpen_InitialClip)
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000857 , fAutoRT(ctx, rt) {
858 fAutoMatrix.setIdentity(ctx);
859 // should never fail with no paint param.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000860 SkASSERT(fAutoMatrix.succeeded());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000861 }
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000862
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000863 private:
864 AutoClip fAutoClip;
865 AutoRenderTarget fAutoRT;
866 AutoMatrix fAutoMatrix;
867 };
868
bsalomon@google.com27847de2011-02-22 20:59:41 +0000869 ///////////////////////////////////////////////////////////////////////////
870 // Functions intended for internal use only.
871 GrGpu* getGpu() { return fGpu; }
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000872 const GrGpu* getGpu() const { return fGpu; }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000873 GrFontCache* getFontCache() { return fFontCache; }
robertphillips@google.come930a072014-04-03 00:34:27 +0000874 GrLayerCache* getLayerCache() { return fLayerCache.get(); }
bsalomon@google.com21c10c52013-06-13 17:44:07 +0000875 GrDrawTarget* getTextTarget();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000876 const GrIndexBuffer* getQuadIndexBuffer() const;
bsalomon@google.com9923c2b2012-06-06 18:21:18 +0000877
commit-bot@chromium.org78a10782013-08-21 19:27:48 +0000878 // Called by tests that draw directly to the context via GrDrawTarget
879 void getTestTarget(GrTestTarget*);
880
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000881 // Functions for managing gpu trace markers
882 bool isGpuTracingEnabled() const { return fGpuTracingEnabled; }
883 void enableGpuTracing() { fGpuTracingEnabled = true; }
884 void disableGpuTracing() { fGpuTracingEnabled = false; }
885
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000886 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000887 * Stencil buffers add themselves to the cache using addStencilBuffer. findStencilBuffer is
888 * called to check the cache for a SB that matches an RT's criteria.
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000889 */
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000890 void addStencilBuffer(GrStencilBuffer* sb);
891 GrStencilBuffer* findStencilBuffer(int width, int height, int sampleCnt);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000892
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000893 GrPathRenderer* getPathRenderer(
894 const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000895 const SkStrokeRec& stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000896 const GrDrawTarget* target,
897 bool allowSW,
robertphillips@google.come79f3202014-02-11 16:30:21 +0000898 GrPathRendererChain::DrawType drawType = GrPathRendererChain::kColor_DrawType,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000899 GrPathRendererChain::StencilSupport* stencilSupport = NULL);
robertphillips@google.com2c756812012-05-22 20:28:23 +0000900
skia.committer@gmail.com74758112013-08-17 07:01:54 +0000901
robertphillips@google.com59552022012-08-31 13:07:37 +0000902#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +0000903 void printCacheStats() const;
904#endif
905
bsalomon@google.com27847de2011-02-22 20:59:41 +0000906private:
bsalomon@google.com1d4edd32012-08-16 18:36:06 +0000907 // Used to indicate whether a draw should be performed immediately or queued in fDrawBuffer.
908 enum BufferedDraw {
909 kYes_BufferedDraw,
910 kNo_BufferedDraw,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000911 };
bsalomon@google.com1d4edd32012-08-16 18:36:06 +0000912 BufferedDraw fLastDrawWasBuffered;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000913
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000914 GrGpu* fGpu;
915 SkMatrix fViewMatrix;
916 SkAutoTUnref<GrRenderTarget> fRenderTarget;
917 const GrClipData* fClip; // TODO: make this ref counted
918 GrDrawState* fDrawState;
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000919
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000920 GrResourceCache* fTextureCache;
921 GrFontCache* fFontCache;
robertphillips@google.come930a072014-04-03 00:34:27 +0000922 SkAutoTDelete<GrLayerCache> fLayerCache;
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000923
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000924 GrPathRendererChain* fPathRendererChain;
925 GrSoftwarePathRenderer* fSoftwarePathRenderer;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000926
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000927 GrVertexBufferAllocPool* fDrawBufferVBAllocPool;
928 GrIndexBufferAllocPool* fDrawBufferIBAllocPool;
929 GrInOrderDrawBuffer* fDrawBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000930
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000931 // Set by OverbudgetCB() to request that GrContext flush before exiting a draw.
932 bool fFlushToReduceCacheSize;
933
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000934 GrAARectRenderer* fAARectRenderer;
935 GrOvalRenderer* fOvalRenderer;
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000936
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000937 bool fDidTestPMConversions;
938 int fPMToUPMConversion;
939 int fUPMToPMConversion;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000940
robertphillips@google.comcdb426d2012-09-24 19:33:59 +0000941 struct CleanUpData {
942 PFCleanUpFunc fFunc;
943 void* fInfo;
944 };
945
robertphillips@google.com44a91dc2013-07-25 15:32:06 +0000946 SkTDArray<CleanUpData> fCleanUpData;
947
skia.committer@gmail.com956b3102013-07-26 07:00:58 +0000948 int fMaxTextureSizeOverride;
robertphillips@google.comcdb426d2012-09-24 19:33:59 +0000949
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000950 bool fGpuTracingEnabled;
951
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000952 GrContext(); // init must be called after the constructor.
953 bool init(GrBackend, GrBackendContext);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000954
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000955 void setupDrawBuffer();
956
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000957 class AutoRestoreEffects;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000958 class AutoCheckFlush;
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000959 /// Sets the paint and returns the target to draw into. The paint can be NULL in which case the
960 /// draw state is left unmodified.
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000961 GrDrawTarget* prepareToDraw(const GrPaint*, BufferedDraw, AutoRestoreEffects*, AutoCheckFlush*);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000962
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000963 void internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path,
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000964 const SkStrokeRec& stroke);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000965
robertphillips@google.com3319f332012-08-13 18:00:36 +0000966 GrTexture* createResizedTexture(const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000967 const GrCacheID& cacheID,
robertphillips@google.com3319f332012-08-13 18:00:36 +0000968 void* srcData,
969 size_t rowBytes,
humper@google.comb86add12013-07-25 18:49:07 +0000970 bool filter);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000971
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000972 // Needed so GrTexture's returnToCache helper function can call
973 // addExistingTextureToCache
974 friend class GrTexture;
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +0000975 friend class GrStencilAndCoverPathRenderer;
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000976
977 // Add an existing texture to the texture cache. This is intended solely
978 // for use with textures released from an GrAutoScratchTexture.
979 void addExistingTextureToCache(GrTexture* texture);
reed@google.comfa35e3d2012-06-26 20:16:17 +0000980
skia.committer@gmail.comcdcb2ce2013-01-29 07:05:52 +0000981 /**
bsalomon@google.comadc65362013-01-28 14:26:09 +0000982 * These functions create premul <-> unpremul effects if it is possible to generate a pair
983 * of effects that make a readToUPM->writeToPM->readToUPM cycle invariant. Otherwise, they
984 * return NULL.
985 */
986 const GrEffectRef* createPMToUPMEffect(GrTexture* texture,
987 bool swapRAndB,
988 const SkMatrix& matrix);
989 const GrEffectRef* createUPMToPMEffect(GrTexture* texture,
990 bool swapRAndB,
991 const SkMatrix& matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000992
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000993 /**
994 * This callback allows the resource cache to callback into the GrContext
995 * when the cache is still overbudget after a purge.
996 */
997 static bool OverbudgetCB(void* data);
998
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +0000999 /** Creates a new gpu path, based on the specified path and stroke and returns it.
1000 * The caller owns a ref on the returned path which must be balanced by a call to unref.
1001 *
1002 * @param skPath the path geometry.
1003 * @param stroke the path stroke.
1004 * @return a new path or NULL if the operation is not supported by the backend.
1005 */
1006 GrPath* createPath(const SkPath& skPath, const SkStrokeRec& stroke);
1007
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +00001008 typedef SkRefCnt INHERITED;
bsalomon@google.com27847de2011-02-22 20:59:41 +00001009};
1010
1011/**
bsalomon@google.com1e269b52012-10-15 14:25:31 +00001012 * Gets and locks a scratch texture from a descriptor using either exact or approximate criteria.
1013 * Unlocks texture in the destructor.
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001014 */
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +00001015class GrAutoScratchTexture : public ::SkNoncopyable {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001016public:
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001017 GrAutoScratchTexture()
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001018 : fContext(NULL)
1019 , fTexture(NULL) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001020 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001021
1022 GrAutoScratchTexture(GrContext* context,
1023 const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +00001024 GrContext::ScratchTexMatch match = GrContext::kApprox_ScratchTexMatch)
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001025 : fContext(NULL)
1026 , fTexture(NULL) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001027 this->set(context, desc, match);
1028 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001029
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001030 ~GrAutoScratchTexture() {
robertphillips@google.com9ec07532012-06-22 12:01:30 +00001031 this->reset();
1032 }
1033
1034 void reset() {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001035 if (NULL != fContext && NULL != fTexture) {
robertphillips@google.com9fbcad02012-09-09 14:44:15 +00001036 fContext->unlockScratchTexture(fTexture);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001037 fTexture->unref();
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001038 fTexture = NULL;
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001039 }
1040 }
bsalomon@google.com84223112011-07-14 14:45:44 +00001041
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001042 /*
1043 * When detaching a texture we do not unlock it in the texture cache but
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001044 * we do set the returnToCache flag. In this way the texture remains
1045 * "locked" in the texture cache until it is freed and recycled in
1046 * GrTexture::internal_dispose. In reality, the texture has been removed
1047 * from the cache (because this is in AutoScratchTexture) and by not
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001048 * calling unlockScratchTexture we simply don't re-add it. It will be
1049 * reattached in GrTexture::internal_dispose.
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001050 *
1051 * Note that the caller is assumed to accept and manage the ref to the
1052 * returned texture.
1053 */
1054 GrTexture* detach() {
commit-bot@chromium.org3f4ea262013-05-11 13:21:43 +00001055 if (NULL == fTexture) {
1056 return NULL;
1057 }
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001058 GrTexture* texture = fTexture;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001059 fTexture = NULL;
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001060
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001061 // This GrAutoScratchTexture has a ref from lockAndRefScratchTexture, which we give up now.
1062 // The cache also has a ref which we are lending to the caller of detach(). When the caller
1063 // lets go of the ref and the ref count goes to 0 internal_dispose will see this flag is
1064 // set and re-ref the texture, thereby restoring the cache's ref.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001065 SkASSERT(texture->getRefCnt() > 1);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001066 texture->setFlag((GrTextureFlags) GrTexture::kReturnToCache_FlagBit);
1067 texture->unref();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001068 SkASSERT(NULL != texture->getCacheEntry());
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001069
1070 return texture;
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001071 }
1072
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001073 GrTexture* set(GrContext* context,
1074 const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +00001075 GrContext::ScratchTexMatch match = GrContext::kApprox_ScratchTexMatch) {
robertphillips@google.com9ec07532012-06-22 12:01:30 +00001076 this->reset();
1077
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001078 fContext = context;
1079 if (NULL != fContext) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001080 fTexture = fContext->lockAndRefScratchTexture(desc, match);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001081 if (NULL == fTexture) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001082 fContext = NULL;
1083 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001084 return fTexture;
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001085 } else {
1086 return NULL;
1087 }
1088 }
1089
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001090 GrTexture* texture() { return fTexture; }
1091
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001092private:
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001093 GrContext* fContext;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001094 GrTexture* fTexture;
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001095};
1096
bsalomon@google.com27847de2011-02-22 20:59:41 +00001097#endif