blob: b625389b67a6b543c271532f5153f471bfec25a0 [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 */
460 void drawRRect(const GrPaint& paint,
461 const SkRRect& rrect,
462 const SkStrokeRec& stroke);
463
464 /**
bsalomon@google.comd302f142011-03-03 13:54:13 +0000465 * Draws a path.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000466 *
467 * @param paint describes how to color pixels.
reed@google.com07f3ee12011-05-16 17:21:57 +0000468 * @param path the path to draw
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000469 * @param stroke the stroke information (width, join, cap)
bsalomon@google.com27847de2011-02-22 20:59:41 +0000470 */
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000471 void drawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke);
reed@google.com07f3ee12011-05-16 17:21:57 +0000472
bsalomon@google.com27847de2011-02-22 20:59:41 +0000473 /**
474 * Draws vertices with a paint.
475 *
476 * @param paint describes how to color pixels.
477 * @param primitiveType primitives type to draw.
478 * @param vertexCount number of vertices.
479 * @param positions array of vertex positions, required.
480 * @param texCoords optional array of texture coordinates used
481 * to access the paint.
482 * @param colors optional array of per-vertex colors, supercedes
483 * the paint's color field.
484 * @param indices optional array of indices. If NULL vertices
485 * are drawn non-indexed.
486 * @param indexCount if indices is non-null then this is the
487 * number of indices.
488 */
489 void drawVertices(const GrPaint& paint,
490 GrPrimitiveType primitiveType,
491 int vertexCount,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000492 const SkPoint positions[],
493 const SkPoint texs[],
bsalomon@google.com27847de2011-02-22 20:59:41 +0000494 const GrColor colors[],
495 const uint16_t indices[],
496 int indexCount);
497
bsalomon@google.com93c96602012-04-27 13:05:21 +0000498 /**
499 * Draws an oval.
500 *
501 * @param paint describes how to color pixels.
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000502 * @param oval the bounding rect of the oval.
503 * @param stroke the stroke information (width, style)
bsalomon@google.com93c96602012-04-27 13:05:21 +0000504 */
505 void drawOval(const GrPaint& paint,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000506 const SkRect& oval,
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000507 const SkStrokeRec& stroke);
bsalomon@google.com93c96602012-04-27 13:05:21 +0000508
bsalomon@google.com27847de2011-02-22 20:59:41 +0000509 ///////////////////////////////////////////////////////////////////////////
510 // Misc.
511
512 /**
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000513 * Flags that affect flush() behavior.
514 */
515 enum FlushBits {
516 /**
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000517 * A client may reach a point where it has partially rendered a frame
518 * through a GrContext that it knows the user will never see. This flag
519 * causes the flush to skip submission of deferred content to the 3D API
520 * during the flush.
521 */
522 kDiscard_FlushBit = 0x2,
523 };
524
525 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +0000526 * Call to ensure all drawing to the context has been issued to the
527 * underlying 3D API.
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000528 * @param flagsBitfield flags that control the flushing behavior. See
529 * FlushBits.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000530 */
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000531 void flush(int flagsBitfield = 0);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000532
bsalomon@google.com0342a852012-08-20 19:22:38 +0000533 /**
534 * These flags can be used with the read/write pixels functions below.
535 */
536 enum PixelOpsFlags {
537 /** The GrContext will not be flushed. This means that the read or write may occur before
538 previous draws have executed. */
539 kDontFlush_PixelOpsFlag = 0x1,
540 /** The src for write or dst read is unpremultiplied. This is only respected if both the
541 config src and dst configs are an RGBA/BGRA 8888 format. */
542 kUnpremul_PixelOpsFlag = 0x2,
543 };
544
bsalomon@google.com27847de2011-02-22 20:59:41 +0000545 /**
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000546 * Reads a rectangle of pixels from a render target.
bsalomon@google.com0342a852012-08-20 19:22:38 +0000547 * @param target the render target to read from. NULL means the current render target.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000548 * @param left left edge of the rectangle to read (inclusive)
549 * @param top top edge of the rectangle to read (inclusive)
550 * @param width width of rectangle to read in pixels.
551 * @param height height of rectangle to read in pixels.
552 * @param config the pixel config of the destination buffer
553 * @param buffer memory to read the rectangle into.
bsalomon@google.com0342a852012-08-20 19:22:38 +0000554 * @param rowBytes number of bytes bewtween consecutive rows. Zero means rows are tightly
555 * packed.
556 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000557 *
bsalomon@google.com0342a852012-08-20 19:22:38 +0000558 * @return true if the read succeeded, false if not. The read can fail because of an unsupported
559 * pixel config or because no render target is currently set and NULL was passed for
560 * target.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000561 */
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000562 bool readRenderTargetPixels(GrRenderTarget* target,
563 int left, int top, int width, int height,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000564 GrPixelConfig config, void* buffer,
565 size_t rowBytes = 0,
566 uint32_t pixelOpsFlags = 0);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000567
568 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000569 * Copy the src pixels [buffer, row bytes, pixel config] into a render target at the specified
bsalomon@google.com0342a852012-08-20 19:22:38 +0000570 * rectangle.
571 * @param target the render target to write into. NULL means the current render target.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000572 * @param left left edge of the rectangle to write (inclusive)
573 * @param top top edge of the rectangle to write (inclusive)
574 * @param width width of rectangle to write in pixels.
575 * @param height height of rectangle to write in pixels.
576 * @param config the pixel config of the source buffer
577 * @param buffer memory to read the rectangle from.
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000578 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
bsalomon@google.com0342a852012-08-20 19:22:38 +0000579 * packed.
580 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com9c680582013-02-06 18:17:50 +0000581 *
582 * @return true if the write succeeded, false if not. The write can fail because of an
583 * unsupported combination of target and pixel configs.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000584 */
bsalomon@google.com9c680582013-02-06 18:17:50 +0000585 bool writeRenderTargetPixels(GrRenderTarget* target,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000586 int left, int top, int width, int height,
587 GrPixelConfig config, const void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000588 size_t rowBytes = 0,
589 uint32_t pixelOpsFlags = 0);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000590
591 /**
592 * Reads a rectangle of pixels from a texture.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000593 * @param texture the texture to read from.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000594 * @param left left edge of the rectangle to read (inclusive)
595 * @param top top edge of the rectangle to read (inclusive)
596 * @param width width of rectangle to read in pixels.
597 * @param height height of rectangle to read in pixels.
598 * @param config the pixel config of the destination buffer
599 * @param buffer memory to read the rectangle into.
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000600 * @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
bsalomon@google.com0342a852012-08-20 19:22:38 +0000601 * packed.
602 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000603 *
bsalomon@google.com0342a852012-08-20 19:22:38 +0000604 * @return true if the read succeeded, false if not. The read can fail because of an unsupported
605 * pixel config.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000606 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000607 bool readTexturePixels(GrTexture* texture,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000608 int left, int top, int width, int height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000609 GrPixelConfig config, void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000610 size_t rowBytes = 0,
611 uint32_t pixelOpsFlags = 0);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000612
613 /**
bsalomon@google.com6f379512011-11-16 20:36:03 +0000614 * Writes a rectangle of pixels to a texture.
615 * @param texture the render target to read from.
616 * @param left left edge of the rectangle to write (inclusive)
617 * @param top top edge of the rectangle to write (inclusive)
618 * @param width width of rectangle to write in pixels.
619 * @param height height of rectangle to write in pixels.
620 * @param config the pixel config of the source buffer
621 * @param buffer memory to read pixels from
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000622 * @param rowBytes number of bytes between consecutive rows. Zero
bsalomon@google.com6f379512011-11-16 20:36:03 +0000623 * means rows are tightly packed.
bsalomon@google.com0342a852012-08-20 19:22:38 +0000624 * @param pixelOpsFlags see PixelOpsFlags enum above.
bsalomon@google.com9c680582013-02-06 18:17:50 +0000625 * @return true if the write succeeded, false if not. The write can fail because of an
626 * unsupported combination of texture and pixel configs.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000627 */
bsalomon@google.com9c680582013-02-06 18:17:50 +0000628 bool writeTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000629 int left, int top, int width, int height,
630 GrPixelConfig config, const void* buffer,
bsalomon@google.com0342a852012-08-20 19:22:38 +0000631 size_t rowBytes,
632 uint32_t pixelOpsFlags = 0);
633
634
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000635 /**
scroggo@google.coma2a31922012-12-07 19:14:45 +0000636 * Copies a rectangle of texels from src to dst. The size of dst is the size of the rectangle
637 * copied and topLeft is the position of the rect in src. The rectangle is clipped to src's
638 * bounds.
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000639 * @param src the texture to copy from.
640 * @param dst the render target to copy to.
scroggo@google.coma2a31922012-12-07 19:14:45 +0000641 * @param topLeft the point in src that will be copied to the top-left of dst. If NULL,
642 * (0, 0) will be used.
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000643 */
scroggo@google.coma2a31922012-12-07 19:14:45 +0000644 void copyTexture(GrTexture* src, GrRenderTarget* dst, const SkIPoint* topLeft = NULL);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000645
646 /**
647 * Resolves a render target that has MSAA. The intermediate MSAA buffer is
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000648 * down-sampled to the associated GrTexture (accessible via
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000649 * GrRenderTarget::asTexture()). Any pending draws to the render target will
650 * be executed before the resolve.
651 *
652 * This is only necessary when a client wants to access the object directly
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000653 * using the backend API directly. GrContext will detect when it must
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000654 * perform a resolve to a GrTexture used as the source of a draw or before
655 * reading pixels back from a GrTexture or GrRenderTarget.
656 */
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000657 void resolveRenderTarget(GrRenderTarget*);
658
659 /**
660 * Provides a perfomance hint that the render target's contents are allowed
661 * to become undefined.
662 */
663 void discardRenderTarget(GrRenderTarget*);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000664
commit-bot@chromium.org03e3e892013-10-02 18:19:17 +0000665#ifdef SK_DEVELOPER
666 void dumpFontCache() const;
667#endif
668
bsalomon@google.com27847de2011-02-22 20:59:41 +0000669 ///////////////////////////////////////////////////////////////////////////
670 // Helpers
671
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000672 class AutoRenderTarget : public ::SkNoncopyable {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000673 public:
674 AutoRenderTarget(GrContext* context, GrRenderTarget* target) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000675 fPrevTarget = context->getRenderTarget();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000676 SkSafeRef(fPrevTarget);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000677 context->setRenderTarget(target);
678 fContext = context;
679 }
680 AutoRenderTarget(GrContext* context) {
681 fPrevTarget = context->getRenderTarget();
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000682 SkSafeRef(fPrevTarget);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000683 fContext = context;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000684 }
685 ~AutoRenderTarget() {
robertphillips@google.comccb39502012-10-01 18:25:13 +0000686 if (NULL != fContext) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000687 fContext->setRenderTarget(fPrevTarget);
688 }
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000689 SkSafeUnref(fPrevTarget);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000690 }
691 private:
692 GrContext* fContext;
693 GrRenderTarget* fPrevTarget;
694 };
695
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000696 /**
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000697 * Save/restore the view-matrix in the context. It can optionally adjust a paint to account
698 * for a coordinate system change. Here is an example of how the paint param can be used:
699 *
bsalomon@google.com6f261be2012-10-24 19:07:10 +0000700 * A GrPaint is setup with GrEffects. The stages will have access to the pre-matrix source
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000701 * geometry positions when the draw is executed. Later on a decision is made to transform the
bsalomon@google.com6f261be2012-10-24 19:07:10 +0000702 * geometry to device space on the CPU. The effects now need to know that the space in which
703 * the geometry will be specified has changed.
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000704 *
705 * Note that when restore is called (or in the destructor) the context's matrix will be
706 * restored. However, the paint will not be restored. The caller must make a copy of the
707 * paint if necessary. Hint: use SkTCopyOnFirstWrite if the AutoMatrix is conditionally
708 * initialized.
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000709 */
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000710 class AutoMatrix : public ::SkNoncopyable {
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000711 public:
712 AutoMatrix() : fContext(NULL) {}
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000713
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000714 ~AutoMatrix() { this->restore(); }
715
716 /**
717 * Initializes by pre-concat'ing the context's current matrix with the preConcat param.
718 */
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000719 void setPreConcat(GrContext* context, const SkMatrix& preConcat, GrPaint* paint = NULL) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000720 SkASSERT(NULL != context);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000721
722 this->restore();
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000723
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000724 fContext = context;
725 fMatrix = context->getMatrix();
726 this->preConcat(preConcat, paint);
727 }
728
729 /**
730 * Sets the context's matrix to identity. Returns false if the inverse matrix is required to
731 * update a paint but the matrix cannot be inverted.
732 */
733 bool setIdentity(GrContext* context, GrPaint* paint = NULL) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000734 SkASSERT(NULL != context);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000735
736 this->restore();
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000737
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000738 if (NULL != paint) {
bsalomon@google.comc7818882013-03-20 19:19:53 +0000739 if (!paint->localCoordChangeInverse(context->getMatrix())) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000740 return false;
741 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000742 }
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000743 fMatrix = context->getMatrix();
744 fContext = context;
745 context->setIdentityMatrix();
746 return true;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000747 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000748
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000749 /**
750 * Replaces the context's matrix with a new matrix. Returns false if the inverse matrix is
751 * required to update a paint but the matrix cannot be inverted.
752 */
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000753 bool set(GrContext* context, const SkMatrix& newMatrix, GrPaint* paint = NULL) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000754 if (NULL != paint) {
755 if (!this->setIdentity(context, paint)) {
756 return false;
757 }
758 this->preConcat(newMatrix, paint);
759 } else {
760 this->restore();
761 fContext = context;
762 fMatrix = context->getMatrix();
763 context->setMatrix(newMatrix);
764 }
765 return true;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000766 }
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000767
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000768 /**
769 * If this has been initialized then the context's matrix will be further updated by
770 * pre-concat'ing the preConcat param. The matrix that will be restored remains unchanged.
771 * The paint is assumed to be relative to the context's matrix at the time this call is
772 * made, not the matrix at the time AutoMatrix was first initialized. In other words, this
773 * performs an incremental update of the paint.
774 */
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000775 void preConcat(const SkMatrix& preConcat, GrPaint* paint = NULL) {
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000776 if (NULL != paint) {
bsalomon@google.comc7818882013-03-20 19:19:53 +0000777 paint->localCoordChange(preConcat);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000778 }
779 fContext->concatMatrix(preConcat);
780 }
781
782 /**
783 * Returns false if never initialized or the inverse matrix was required to update a paint
784 * but the matrix could not be inverted.
785 */
786 bool succeeded() const { return NULL != fContext; }
787
788 /**
789 * If this has been initialized then the context's original matrix is restored.
790 */
791 void restore() {
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000792 if (NULL != fContext) {
793 fContext->setMatrix(fMatrix);
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000794 fContext = NULL;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000795 }
796 }
797
798 private:
799 GrContext* fContext;
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000800 SkMatrix fMatrix;
robertphillips@google.comfea85ac2012-07-11 18:53:23 +0000801 };
bsalomon@google.com27847de2011-02-22 20:59:41 +0000802
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000803 class AutoClip : public ::SkNoncopyable {
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000804 public:
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000805 // This enum exists to require a caller of the constructor to acknowledge that the clip will
806 // initially be wide open. It also could be extended if there are other desirable initial
807 // clip states.
808 enum InitialClip {
809 kWideOpen_InitialClip,
810 };
811
skia.committer@gmail.comdc3a4e52012-10-02 02:01:24 +0000812 AutoClip(GrContext* context, InitialClip initialState)
robertphillips@google.comccb39502012-10-01 18:25:13 +0000813 : fContext(context) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000814 SkASSERT(kWideOpen_InitialClip == initialState);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000815 fNewClipData.fClipStack = &fNewClipStack;
robertphillips@google.comccb39502012-10-01 18:25:13 +0000816
817 fOldClip = context->getClip();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000818 context->setClip(&fNewClipData);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000819 }
820
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000821 AutoClip(GrContext* context, const SkRect& newClipRect)
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000822 : fContext(context)
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000823 , fNewClipStack(newClipRect) {
824 fNewClipData.fClipStack = &fNewClipStack;
825
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000826 fOldClip = fContext->getClip();
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000827 fContext->setClip(&fNewClipData);
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000828 }
829
830 ~AutoClip() {
831 if (NULL != fContext) {
832 fContext->setClip(fOldClip);
833 }
834 }
835 private:
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000836 GrContext* fContext;
837 const GrClipData* fOldClip;
838
robertphillips@google.com641f8b12012-07-31 19:15:58 +0000839 SkClipStack fNewClipStack;
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000840 GrClipData fNewClipData;
robertphillips@google.com56c79b12012-07-11 20:57:46 +0000841 };
842
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000843 class AutoWideOpenIdentityDraw {
844 public:
845 AutoWideOpenIdentityDraw(GrContext* ctx, GrRenderTarget* rt)
846 : fAutoClip(ctx, AutoClip::kWideOpen_InitialClip)
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000847 , fAutoRT(ctx, rt) {
848 fAutoMatrix.setIdentity(ctx);
849 // should never fail with no paint param.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000850 SkASSERT(fAutoMatrix.succeeded());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000851 }
bsalomon@google.com3cbaa2d2012-10-12 14:51:52 +0000852
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000853 private:
854 AutoClip fAutoClip;
855 AutoRenderTarget fAutoRT;
856 AutoMatrix fAutoMatrix;
857 };
858
bsalomon@google.com27847de2011-02-22 20:59:41 +0000859 ///////////////////////////////////////////////////////////////////////////
860 // Functions intended for internal use only.
861 GrGpu* getGpu() { return fGpu; }
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000862 const GrGpu* getGpu() const { return fGpu; }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000863 GrFontCache* getFontCache() { return fFontCache; }
robertphillips@google.come930a072014-04-03 00:34:27 +0000864 GrLayerCache* getLayerCache() { return fLayerCache.get(); }
bsalomon@google.com21c10c52013-06-13 17:44:07 +0000865 GrDrawTarget* getTextTarget();
bsalomon@google.com27847de2011-02-22 20:59:41 +0000866 const GrIndexBuffer* getQuadIndexBuffer() const;
bsalomon@google.com9923c2b2012-06-06 18:21:18 +0000867
commit-bot@chromium.org78a10782013-08-21 19:27:48 +0000868 // Called by tests that draw directly to the context via GrDrawTarget
869 void getTestTarget(GrTestTarget*);
870
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000871 // Functions for managing gpu trace markers
872 bool isGpuTracingEnabled() const { return fGpuTracingEnabled; }
873 void enableGpuTracing() { fGpuTracingEnabled = true; }
874 void disableGpuTracing() { fGpuTracingEnabled = false; }
875
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000876 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000877 * Stencil buffers add themselves to the cache using addStencilBuffer. findStencilBuffer is
878 * called to check the cache for a SB that matches an RT's criteria.
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000879 */
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000880 void addStencilBuffer(GrStencilBuffer* sb);
881 GrStencilBuffer* findStencilBuffer(int width, int height, int sampleCnt);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000882
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000883 GrPathRenderer* getPathRenderer(
884 const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000885 const SkStrokeRec& stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000886 const GrDrawTarget* target,
887 bool allowSW,
robertphillips@google.come79f3202014-02-11 16:30:21 +0000888 GrPathRendererChain::DrawType drawType = GrPathRendererChain::kColor_DrawType,
bsalomon@google.com45a15f52012-12-10 19:10:17 +0000889 GrPathRendererChain::StencilSupport* stencilSupport = NULL);
robertphillips@google.com2c756812012-05-22 20:28:23 +0000890
skia.committer@gmail.com74758112013-08-17 07:01:54 +0000891
robertphillips@google.com59552022012-08-31 13:07:37 +0000892#if GR_CACHE_STATS
robertphillips@google.com5f9f2f52012-08-22 10:57:05 +0000893 void printCacheStats() const;
894#endif
895
bsalomon@google.com27847de2011-02-22 20:59:41 +0000896private:
bsalomon@google.com1d4edd32012-08-16 18:36:06 +0000897 // Used to indicate whether a draw should be performed immediately or queued in fDrawBuffer.
898 enum BufferedDraw {
899 kYes_BufferedDraw,
900 kNo_BufferedDraw,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000901 };
bsalomon@google.com1d4edd32012-08-16 18:36:06 +0000902 BufferedDraw fLastDrawWasBuffered;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000903
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000904 GrGpu* fGpu;
905 SkMatrix fViewMatrix;
906 SkAutoTUnref<GrRenderTarget> fRenderTarget;
907 const GrClipData* fClip; // TODO: make this ref counted
908 GrDrawState* fDrawState;
bsalomon@google.com10e04bf2012-03-30 14:35:04 +0000909
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000910 GrResourceCache* fTextureCache;
911 GrFontCache* fFontCache;
robertphillips@google.come930a072014-04-03 00:34:27 +0000912 SkAutoTDelete<GrLayerCache> fLayerCache;
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000913
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000914 GrPathRendererChain* fPathRendererChain;
915 GrSoftwarePathRenderer* fSoftwarePathRenderer;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000916
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000917 GrVertexBufferAllocPool* fDrawBufferVBAllocPool;
918 GrIndexBufferAllocPool* fDrawBufferIBAllocPool;
919 GrInOrderDrawBuffer* fDrawBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000920
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000921 // Set by OverbudgetCB() to request that GrContext flush before exiting a draw.
922 bool fFlushToReduceCacheSize;
923
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000924 GrAARectRenderer* fAARectRenderer;
925 GrOvalRenderer* fOvalRenderer;
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000926
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +0000927 bool fDidTestPMConversions;
928 int fPMToUPMConversion;
929 int fUPMToPMConversion;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000930
robertphillips@google.comcdb426d2012-09-24 19:33:59 +0000931 struct CleanUpData {
932 PFCleanUpFunc fFunc;
933 void* fInfo;
934 };
935
robertphillips@google.com44a91dc2013-07-25 15:32:06 +0000936 SkTDArray<CleanUpData> fCleanUpData;
937
skia.committer@gmail.com956b3102013-07-26 07:00:58 +0000938 int fMaxTextureSizeOverride;
robertphillips@google.comcdb426d2012-09-24 19:33:59 +0000939
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000940 bool fGpuTracingEnabled;
941
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000942 GrContext(); // init must be called after the constructor.
943 bool init(GrBackend, GrBackendContext);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000944
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000945 void setupDrawBuffer();
946
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000947 class AutoRestoreEffects;
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000948 class AutoCheckFlush;
bsalomon@google.com07ea2db2012-08-17 14:06:49 +0000949 /// Sets the paint and returns the target to draw into. The paint can be NULL in which case the
950 /// draw state is left unmodified.
commit-bot@chromium.org5dbb1492013-10-04 16:23:58 +0000951 GrDrawTarget* prepareToDraw(const GrPaint*, BufferedDraw, AutoRestoreEffects*, AutoCheckFlush*);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000952
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000953 void internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path,
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000954 const SkStrokeRec& stroke);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000955
robertphillips@google.com3319f332012-08-13 18:00:36 +0000956 GrTexture* createResizedTexture(const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +0000957 const GrCacheID& cacheID,
robertphillips@google.com3319f332012-08-13 18:00:36 +0000958 void* srcData,
959 size_t rowBytes,
humper@google.comb86add12013-07-25 18:49:07 +0000960 bool filter);
robertphillips@google.com3319f332012-08-13 18:00:36 +0000961
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000962 // Needed so GrTexture's returnToCache helper function can call
963 // addExistingTextureToCache
964 friend class GrTexture;
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +0000965 friend class GrStencilAndCoverPathRenderer;
robertphillips@google.com15c0fea2012-06-22 12:41:43 +0000966
967 // Add an existing texture to the texture cache. This is intended solely
968 // for use with textures released from an GrAutoScratchTexture.
969 void addExistingTextureToCache(GrTexture* texture);
reed@google.comfa35e3d2012-06-26 20:16:17 +0000970
skia.committer@gmail.comcdcb2ce2013-01-29 07:05:52 +0000971 /**
bsalomon@google.comadc65362013-01-28 14:26:09 +0000972 * These functions create premul <-> unpremul effects if it is possible to generate a pair
973 * of effects that make a readToUPM->writeToPM->readToUPM cycle invariant. Otherwise, they
974 * return NULL.
975 */
976 const GrEffectRef* createPMToUPMEffect(GrTexture* texture,
977 bool swapRAndB,
978 const SkMatrix& matrix);
979 const GrEffectRef* createUPMToPMEffect(GrTexture* texture,
980 bool swapRAndB,
981 const SkMatrix& matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000982
commit-bot@chromium.orgcae27fe2013-07-10 10:14:35 +0000983 /**
984 * This callback allows the resource cache to callback into the GrContext
985 * when the cache is still overbudget after a purge.
986 */
987 static bool OverbudgetCB(void* data);
988
commit-bot@chromium.org5c8ee252013-11-01 15:23:44 +0000989 /** Creates a new gpu path, based on the specified path and stroke and returns it.
990 * The caller owns a ref on the returned path which must be balanced by a call to unref.
991 *
992 * @param skPath the path geometry.
993 * @param stroke the path stroke.
994 * @return a new path or NULL if the operation is not supported by the backend.
995 */
996 GrPath* createPath(const SkPath& skPath, const SkStrokeRec& stroke);
997
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000998 typedef SkRefCnt INHERITED;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000999};
1000
1001/**
bsalomon@google.com1e269b52012-10-15 14:25:31 +00001002 * Gets and locks a scratch texture from a descriptor using either exact or approximate criteria.
1003 * Unlocks texture in the destructor.
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001004 */
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +00001005class GrAutoScratchTexture : public ::SkNoncopyable {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001006public:
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001007 GrAutoScratchTexture()
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001008 : fContext(NULL)
1009 , fTexture(NULL) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001010 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001011
1012 GrAutoScratchTexture(GrContext* context,
1013 const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +00001014 GrContext::ScratchTexMatch match = GrContext::kApprox_ScratchTexMatch)
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001015 : fContext(NULL)
1016 , fTexture(NULL) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001017 this->set(context, desc, match);
1018 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001019
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001020 ~GrAutoScratchTexture() {
robertphillips@google.com9ec07532012-06-22 12:01:30 +00001021 this->reset();
1022 }
1023
1024 void reset() {
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001025 if (NULL != fContext && NULL != fTexture) {
robertphillips@google.com9fbcad02012-09-09 14:44:15 +00001026 fContext->unlockScratchTexture(fTexture);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001027 fTexture->unref();
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001028 fTexture = NULL;
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001029 }
1030 }
bsalomon@google.com84223112011-07-14 14:45:44 +00001031
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001032 /*
1033 * When detaching a texture we do not unlock it in the texture cache but
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001034 * we do set the returnToCache flag. In this way the texture remains
1035 * "locked" in the texture cache until it is freed and recycled in
1036 * GrTexture::internal_dispose. In reality, the texture has been removed
1037 * from the cache (because this is in AutoScratchTexture) and by not
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001038 * calling unlockScratchTexture we simply don't re-add it. It will be
1039 * reattached in GrTexture::internal_dispose.
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001040 *
1041 * Note that the caller is assumed to accept and manage the ref to the
1042 * returned texture.
1043 */
1044 GrTexture* detach() {
commit-bot@chromium.org3f4ea262013-05-11 13:21:43 +00001045 if (NULL == fTexture) {
1046 return NULL;
1047 }
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001048 GrTexture* texture = fTexture;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001049 fTexture = NULL;
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001050
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001051 // This GrAutoScratchTexture has a ref from lockAndRefScratchTexture, which we give up now.
1052 // The cache also has a ref which we are lending to the caller of detach(). When the caller
1053 // lets go of the ref and the ref count goes to 0 internal_dispose will see this flag is
1054 // set and re-ref the texture, thereby restoring the cache's ref.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001055 SkASSERT(texture->getRefCnt() > 1);
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001056 texture->setFlag((GrTextureFlags) GrTexture::kReturnToCache_FlagBit);
1057 texture->unref();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001058 SkASSERT(NULL != texture->getCacheEntry());
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001059
1060 return texture;
robertphillips@google.com15c0fea2012-06-22 12:41:43 +00001061 }
1062
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001063 GrTexture* set(GrContext* context,
1064 const GrTextureDesc& desc,
bsalomon@google.com0797c2c2012-12-20 15:13:01 +00001065 GrContext::ScratchTexMatch match = GrContext::kApprox_ScratchTexMatch) {
robertphillips@google.com9ec07532012-06-22 12:01:30 +00001066 this->reset();
1067
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001068 fContext = context;
1069 if (NULL != fContext) {
bsalomon@google.com95ed55a2013-01-24 14:46:47 +00001070 fTexture = fContext->lockAndRefScratchTexture(desc, match);
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001071 if (NULL == fTexture) {
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001072 fContext = NULL;
1073 }
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001074 return fTexture;
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001075 } else {
1076 return NULL;
1077 }
1078 }
1079
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001080 GrTexture* texture() { return fTexture; }
1081
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001082private:
bsalomon@google.com50398bf2011-07-26 20:45:30 +00001083 GrContext* fContext;
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001084 GrTexture* fTexture;
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +00001085};
1086
bsalomon@google.com27847de2011-02-22 20:59:41 +00001087#endif