blob: ca440a62432c053b391299d8441be1250d35de65 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com27847de2011-02-22 20:59:41 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
bsalomon@google.com27847de2011-02-22 20:59:41 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.com27847de2011-02-22 20:59:41 +000010#ifndef GrContext_DEFINED
11#define GrContext_DEFINED
12
13#include "GrClip.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000014#include "GrPaint.h"
bsalomon@google.comc287a892011-08-19 14:49:36 +000015// not strictly needed but requires WK change in LayerTextureUpdaterCanvas to
16// remove.
17#include "GrRenderTarget.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000018
bsalomon@google.com583a1e32011-08-17 13:42:46 +000019class GrDrawTarget;
bsalomon@google.com27847de2011-02-22 20:59:41 +000020class GrFontCache;
bsalomon@google.com05ef5102011-05-02 21:14:59 +000021class GrGpu;
22struct GrGpuStats;
bsalomon@google.com583a1e32011-08-17 13:42:46 +000023class GrIndexBuffer;
bsalomon@google.com27847de2011-02-22 20:59:41 +000024class GrIndexBufferAllocPool;
25class GrInOrderDrawBuffer;
bsalomon@google.com583a1e32011-08-17 13:42:46 +000026class GrPathRenderer;
bsalomon@google.com30085192011-08-19 15:42:31 +000027class GrPathRendererChain;
bsalomon@google.com50398bf2011-07-26 20:45:30 +000028class GrResourceEntry;
29class GrResourceCache;
bsalomon@google.com558a75b2011-08-08 17:01:14 +000030class GrStencilBuffer;
bsalomon@google.com583a1e32011-08-17 13:42:46 +000031class GrVertexBuffer;
bsalomon@google.com50398bf2011-07-26 20:45:30 +000032class GrVertexBufferAllocPool;
33
bsalomon@google.com91826102011-03-21 19:51:57 +000034class GR_API GrContext : public GrRefCnt {
bsalomon@google.com27847de2011-02-22 20:59:41 +000035public:
36 /**
37 * Creates a GrContext from within a 3D context.
38 */
bsalomon@google.com05ef5102011-05-02 21:14:59 +000039 static GrContext* Create(GrEngine engine,
40 GrPlatform3DContext context3D);
bsalomon@google.com27847de2011-02-22 20:59:41 +000041
bsalomon@google.com27847de2011-02-22 20:59:41 +000042 virtual ~GrContext();
43
44 /**
45 * The GrContext normally assumes that no outsider is setting state
46 * within the underlying 3D API's context/device/whatever. This call informs
47 * the context that the state was modified and it should resend. Shouldn't
48 * be called frequently for good performance.
49 */
50 void resetContext();
51
bsalomon@google.com8fe72472011-03-30 21:26:44 +000052 /**
53 * Abandons all gpu resources, assumes 3D API state is unknown. Call this
54 * if you have lost the associated GPU context, and thus internal texture,
55 * buffer, etc. references/IDs are now invalid. Should be called even when
56 * GrContext is no longer going to be used for two reasons:
57 * 1) ~GrContext will not try to free the objects in the 3D API.
58 * 2) If you've created GrResources that outlive the GrContext they will
59 * be marked as invalid (GrResource::isValid()) and won't attempt to
60 * free their underlying resource in the 3D API.
61 * Content drawn since the last GrContext::flush() may be lost.
62 */
63 void contextLost();
bsalomon@google.com27847de2011-02-22 20:59:41 +000064
65 /**
junov@google.com53a55842011-06-08 22:55:10 +000066 * Similar to contextLost, but makes no attempt to reset state.
67 * Use this method when GrContext destruction is pending, but
68 * the graphics context is destroyed first.
69 */
70 void contextDestroyed();
71
72 /**
bsalomon@google.com8fe72472011-03-30 21:26:44 +000073 * Frees gpu created by the context. Can be called to reduce GPU memory
74 * pressure.
bsalomon@google.com27847de2011-02-22 20:59:41 +000075 */
bsalomon@google.com8fe72472011-03-30 21:26:44 +000076 void freeGpuResources();
77
twiz@google.com05e70242012-01-27 19:12:00 +000078 /**
79 * Returns the number of bytes of GPU memory hosted by the texture cache.
80 */
81 size_t getGpuTextureCacheBytes() const;
82
bsalomon@google.com8fe72472011-03-30 21:26:44 +000083 ///////////////////////////////////////////////////////////////////////////
84 // Textures
bsalomon@google.com27847de2011-02-22 20:59:41 +000085
86 /**
bsalomon@google.com50398bf2011-07-26 20:45:30 +000087 * Token that refers to an entry in the texture cache. Returned by
88 * functions that lock textures. Passed to unlockTexture.
bsalomon@google.com27847de2011-02-22 20:59:41 +000089 */
bsalomon@google.com50398bf2011-07-26 20:45:30 +000090 class TextureCacheEntry {
91 public:
92 TextureCacheEntry() : fEntry(NULL) {}
93 TextureCacheEntry(const TextureCacheEntry& e) : fEntry(e.fEntry) {}
94 TextureCacheEntry& operator= (const TextureCacheEntry& e) {
95 fEntry = e.fEntry;
96 return *this;
97 }
98 GrTexture* texture() const;
99 void reset() { fEntry = NULL; }
100 private:
101 explicit TextureCacheEntry(GrResourceEntry* entry) { fEntry = entry; }
102 void set(GrResourceEntry* entry) { fEntry = entry; }
103 GrResourceEntry* cacheEntry() { return fEntry; }
104 GrResourceEntry* fEntry;
105 friend class GrContext;
106 };
bsalomon@google.com27847de2011-02-22 20:59:41 +0000107
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000108 /**
109 * Key generated by client. Should be a unique key on the texture data.
110 * Does not need to consider that width and height of the texture. Two
111 * textures with the same TextureKey but different bounds will not collide.
112 */
113 typedef uint64_t TextureKey;
114
115 /**
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000116 * Create a new entry, based on the specified key and texture, and return
117 * its "locked" entry. Must call be balanced with an unlockTexture() call.
118 *
119 * @param key A client-generated key that identifies the contents
120 * of the texture. Respecified to findAndLockTexture
121 * for subsequent uses of the texture.
122 * @param sampler The sampler state used to draw a texture may be used
123 * to determine how to store the pixel data in the texture
124 * cache. (e.g. different versions may exist for different
125 * wrap modes on GPUs with limited or no NPOT texture
126 * support). Only the wrap and filter fields are used. NULL
127 * implies clamp wrap modes and nearest filtering.
128 * @param desc Description of the texture properties.
129 * @param srcData Pointer to the pixel values.
130 * @param rowBytes The number of bytes between rows of the texture. Zero
131 * implies tightly packed rows.
132 */
133 TextureCacheEntry createAndLockTexture(TextureKey key,
134 const GrSamplerState* sampler,
135 const GrTextureDesc& desc,
136 void* srcData, size_t rowBytes);
137
138 /**
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000139 * Search for an entry based on key and dimensions. If found, "lock" it and
140 * return it. The entry's texture() function will return NULL if not found.
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000141 * Must be balanced with an unlockTexture() call.
142 *
143 * @param key A client-generated key that identifies the contents
144 * of the texture.
145 * @param width The width of the texture in pixels as specifed in
146 * the GrTextureDesc originally passed to
147 * createAndLockTexture
148 * @param width The height of the texture in pixels as specifed in
149 * the GrTextureDesc originally passed to
150 * createAndLockTexture
151 * @param sampler The sampler state used to draw a texture may be used
152 * to determine the cache entry used. (e.g. different
153 * versions may exist for different wrap modes on GPUs with
154 * limited or no NPOT texture support). Only the wrap and
155 * filter fields are used. NULL implies clamp wrap modes
156 * and nearest filtering.
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000157 */
158 TextureCacheEntry findAndLockTexture(TextureKey key,
159 int width,
160 int height,
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000161 const GrSamplerState* sampler);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000162 /**
163 * Determines whether a texture is in the cache. If the texture is found it
164 * will not be locked or returned. This call does not affect the priority of
165 * the texture for deletion.
166 */
167 bool isTextureInCache(TextureKey key,
168 int width,
169 int height,
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000170 const GrSamplerState*) const;
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000171
172 /**
173 * Enum that determines how closely a returned scratch texture must match
174 * a provided GrTextureDesc.
175 */
176 enum ScratchTexMatch {
177 /**
178 * Finds a texture that exactly matches the descriptor.
179 */
180 kExact_ScratchTexMatch,
181 /**
182 * Finds a texture that approximately matches the descriptor. Will be
183 * at least as large in width and height as desc specifies. If desc
184 * specifies that texture is a render target then result will be a
185 * render target. If desc specifies a render target and doesn't set the
186 * no stencil flag then result will have a stencil. Format and aa level
187 * will always match.
188 */
189 kApprox_ScratchTexMatch
190 };
bsalomon@google.com27847de2011-02-22 20:59:41 +0000191
192 /**
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000193 * Returns a texture matching the desc. It's contents are unknown. Subsequent
194 * requests with the same descriptor are not guaranteed to return the same
195 * texture. The same texture is guaranteed not be returned again until it is
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000196 * unlocked. Must call be balanced with an unlockTexture() call.
bsalomon@google.coma39f4042011-04-26 13:18:16 +0000197 *
198 * Textures created by createAndLockTexture() hide the complications of
199 * tiling non-power-of-two textures on APIs that don't support this (e.g.
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000200 * unextended GLES2). Tiling a npot texture created by lockScratchTexture on
bsalomon@google.coma39f4042011-04-26 13:18:16 +0000201 * such an API will create gaps in the tiling pattern. This includes clamp
202 * mode. (This may be addressed in a future update.)
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000203 */
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000204 TextureCacheEntry lockScratchTexture(const GrTextureDesc& desc, ScratchTexMatch match);
bsalomon@google.comb5b31682011-06-16 18:05:35 +0000205
206 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +0000207 * When done with an entry, call unlockTexture(entry) on it, which returns
208 * it to the cache, where it may be purged.
209 */
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000210 void unlockTexture(TextureCacheEntry entry);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000211
212 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +0000213 * Creates a texture that is outside the cache. Does not count against
214 * cache's budget.
215 */
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000216 GrTexture* createUncachedTexture(const GrTextureDesc&,
bsalomon@google.com27847de2011-02-22 20:59:41 +0000217 void* srcData,
218 size_t rowBytes);
219
220 /**
221 * Returns true if the specified use of an indexed texture is supported.
222 */
bsalomon@google.com1fadb202011-12-12 16:10:08 +0000223 bool supportsIndex8PixelConfig(const GrSamplerState*,
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000224 int width,
225 int height) const;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000226
227 /**
228 * Return the current texture cache limits.
229 *
230 * @param maxTextures If non-null, returns maximum number of textures that
231 * can be held in the cache.
232 * @param maxTextureBytes If non-null, returns maximum number of bytes of
233 * texture memory that can be held in the cache.
234 */
235 void getTextureCacheLimits(int* maxTextures, size_t* maxTextureBytes) const;
236
237 /**
238 * Specify the texture cache limits. If the current cache exceeds either
239 * of these, it will be purged (LRU) to keep the cache within these limits.
240 *
241 * @param maxTextures The maximum number of textures that can be held in
242 * the cache.
243 * @param maxTextureBytes The maximum number of bytes of texture memory
244 * that can be held in the cache.
245 */
246 void setTextureCacheLimits(int maxTextures, size_t maxTextureBytes);
247
248 /**
249 * Return the max width or height of a texture supported by the current gpu
250 */
bsalomon@google.com91958362011-06-13 17:58:13 +0000251 int getMaxTextureSize() const;
252
253 /**
254 * Return the max width or height of a render target supported by the
255 * current gpu
256 */
257 int getMaxRenderTargetSize() const;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000258
259 ///////////////////////////////////////////////////////////////////////////
260 // Render targets
261
262 /**
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000263 * Sets the render target.
264 * @param target the render target to set. (should not be NULL.)
265 */
266 void setRenderTarget(GrRenderTarget* target);
267
268 /**
269 * Gets the current render target.
270 * @return the currently bound render target. Should never be NULL.
271 */
272 const GrRenderTarget* getRenderTarget() const;
273 GrRenderTarget* getRenderTarget();
274
275 ///////////////////////////////////////////////////////////////////////////
276 // Platform Surfaces
277
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000278 /**
bsalomon@google.come269f212011-11-07 13:29:52 +0000279 * Wraps an existing texture with a GrTexture object.
280 *
281 * OpenGL: if the object is a texture Gr may change its GL texture params
282 * when it is drawn.
283 *
284 * @param desc description of the object to create.
285 *
286 * @return GrTexture object or NULL on failure.
287 */
288 GrTexture* createPlatformTexture(const GrPlatformTextureDesc& desc);
289
290 /**
291 * Wraps an existing render target with a GrRenderTarget object. It is
292 * similar to createPlatformTexture but can be used to draw into surfaces
293 * that are not also textures (e.g. FBO 0 in OpenGL, or an MSAA buffer that
294 * the client will resolve to a texture).
295 *
296 * @param desc description of the object to create.
297 *
298 * @return GrTexture object or NULL on failure.
299 */
300 GrRenderTarget* createPlatformRenderTarget(
301 const GrPlatformRenderTargetDesc& desc);
302
bsalomon@google.com27847de2011-02-22 20:59:41 +0000303 ///////////////////////////////////////////////////////////////////////////
304 // Matrix state
305
306 /**
307 * Gets the current transformation matrix.
308 * @return the current matrix.
309 */
310 const GrMatrix& getMatrix() const;
311
312 /**
313 * Sets the transformation matrix.
314 * @param m the matrix to set.
315 */
316 void setMatrix(const GrMatrix& m);
317
318 /**
319 * Concats the current matrix. The passed matrix is applied before the
320 * current matrix.
321 * @param m the matrix to concat.
322 */
323 void concatMatrix(const GrMatrix& m) const;
324
325
326 ///////////////////////////////////////////////////////////////////////////
327 // Clip state
328 /**
329 * Gets the current clip.
330 * @return the current clip.
331 */
bsalomon@google.com05ef5102011-05-02 21:14:59 +0000332 const GrClip& getClip() const;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000333
334 /**
335 * Sets the clip.
336 * @param clip the clip to set.
337 */
338 void setClip(const GrClip& clip);
339
340 /**
341 * Convenience method for setting the clip to a rect.
342 * @param rect the rect to set as the new clip.
343 */
344 void setClip(const GrIRect& rect);
345
346 ///////////////////////////////////////////////////////////////////////////
347 // Draws
348
349 /**
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000350 * Clear the entire or rect of the render target, ignoring any clips.
351 * @param rect the rect to clear or the whole thing if rect is NULL.
352 * @param color the color to clear to.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000353 */
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000354 void clear(const GrIRect* rect, GrColor color);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000355
356 /**
357 * Draw everywhere (respecting the clip) with the paint.
358 */
359 void drawPaint(const GrPaint& paint);
360
361 /**
362 * Draw the rect using a paint.
363 * @param paint describes how to color pixels.
364 * @param strokeWidth If strokeWidth < 0, then the rect is filled, else
365 * the rect is mitered stroked based on strokeWidth. If
366 * strokeWidth == 0, then the stroke is always a single
367 * pixel thick.
368 * @param matrix Optional matrix applied to the rect. Applied before
369 * context's matrix or the paint's matrix.
370 * The rects coords are used to access the paint (through texture matrix)
371 */
372 void drawRect(const GrPaint& paint,
373 const GrRect&,
374 GrScalar strokeWidth = -1,
375 const GrMatrix* matrix = NULL);
376
377 /**
378 * Maps a rect of paint coordinates onto the a rect of destination
379 * coordinates. Each rect can optionally be transformed. The srcRect
380 * is stretched over the dstRect. The dstRect is transformed by the
381 * context's matrix and the srcRect is transformed by the paint's matrix.
382 * Additional optional matrices can be provided by parameters.
383 *
384 * @param paint describes how to color pixels.
385 * @param dstRect the destination rect to draw.
386 * @param srcRect rect of paint coordinates to be mapped onto dstRect
387 * @param dstMatrix Optional matrix to transform dstRect. Applied before
388 * context's matrix.
389 * @param srcMatrix Optional matrix to transform srcRect Applied before
390 * paint's matrix.
391 */
392 void drawRectToRect(const GrPaint& paint,
393 const GrRect& dstRect,
394 const GrRect& srcRect,
395 const GrMatrix* dstMatrix = NULL,
396 const GrMatrix* srcMatrix = NULL);
397
398 /**
bsalomon@google.comd302f142011-03-03 13:54:13 +0000399 * Draws a path.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000400 *
401 * @param paint describes how to color pixels.
reed@google.com07f3ee12011-05-16 17:21:57 +0000402 * @param path the path to draw
bsalomon@google.com27847de2011-02-22 20:59:41 +0000403 * @param fill the path filling rule to use.
404 * @param translate optional additional translation applied to the
405 * path.
406 */
reed@google.com07f3ee12011-05-16 17:21:57 +0000407 void drawPath(const GrPaint& paint, const GrPath& path, GrPathFill fill,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000408 const GrPoint* translate = NULL);
reed@google.com07f3ee12011-05-16 17:21:57 +0000409
bsalomon@google.com27847de2011-02-22 20:59:41 +0000410 /**
411 * Draws vertices with a paint.
412 *
413 * @param paint describes how to color pixels.
414 * @param primitiveType primitives type to draw.
415 * @param vertexCount number of vertices.
416 * @param positions array of vertex positions, required.
417 * @param texCoords optional array of texture coordinates used
418 * to access the paint.
419 * @param colors optional array of per-vertex colors, supercedes
420 * the paint's color field.
421 * @param indices optional array of indices. If NULL vertices
422 * are drawn non-indexed.
423 * @param indexCount if indices is non-null then this is the
424 * number of indices.
425 */
426 void drawVertices(const GrPaint& paint,
427 GrPrimitiveType primitiveType,
428 int vertexCount,
429 const GrPoint positions[],
430 const GrPoint texs[],
431 const GrColor colors[],
432 const uint16_t indices[],
433 int indexCount);
434
bsalomon@google.com27847de2011-02-22 20:59:41 +0000435 ///////////////////////////////////////////////////////////////////////////
436 // Misc.
437
438 /**
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000439 * Flags that affect flush() behavior.
440 */
441 enum FlushBits {
442 /**
443 * A client may want Gr to bind a GrRenderTarget in the 3D API so that
444 * it can be rendered to directly. However, Gr lazily sets state. Simply
445 * calling setRenderTarget() followed by flush() without flags may not
446 * bind the render target. This flag forces the context to bind the last
447 * set render target in the 3D API.
448 */
449 kForceCurrentRenderTarget_FlushBit = 0x1,
450 /**
451 * A client may reach a point where it has partially rendered a frame
452 * through a GrContext that it knows the user will never see. This flag
453 * causes the flush to skip submission of deferred content to the 3D API
454 * during the flush.
455 */
456 kDiscard_FlushBit = 0x2,
457 };
458
459 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +0000460 * Call to ensure all drawing to the context has been issued to the
461 * underlying 3D API.
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000462 * @param flagsBitfield flags that control the flushing behavior. See
463 * FlushBits.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000464 */
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000465 void flush(int flagsBitfield = 0);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000466
bsalomon@google.com27847de2011-02-22 20:59:41 +0000467 /**
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000468 * Reads a rectangle of pixels from a render target.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000469 * @param target the render target to read from. NULL means the
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000470 * current render target.
471 * @param left left edge of the rectangle to read (inclusive)
472 * @param top top edge of the rectangle to read (inclusive)
473 * @param width width of rectangle to read in pixels.
474 * @param height height of rectangle to read in pixels.
475 * @param config the pixel config of the destination buffer
476 * @param buffer memory to read the rectangle into.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000477 * @param rowBytes number of bytes bewtween consecutive rows. Zero
bsalomon@google.comc6980972011-11-02 19:57:21 +0000478 * means rows are tightly packed.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000479 *
480 * @return true if the read succeeded, false if not. The read can fail
bsalomon@google.com6f379512011-11-16 20:36:03 +0000481 * because of an unsupported pixel config or because no render
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000482 * target is currently set.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000483 */
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000484 bool readRenderTargetPixels(GrRenderTarget* target,
485 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000486 GrPixelConfig config, void* buffer,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000487 size_t rowBytes) {
488 return this->internalReadRenderTargetPixels(target, left, top,
489 width, height,
490 config, buffer,
491 rowBytes, 0);
492 }
493
494 /**
495 * Copy the src pixels [buffer, rowbytes, pixelconfig] into a render target
496 * at the specified rectangle.
497 * @param target the render target to write into. NULL means the
498 * current render target.
499 * @param left left edge of the rectangle to write (inclusive)
500 * @param top top edge of the rectangle to write (inclusive)
501 * @param width width of rectangle to write in pixels.
502 * @param height height of rectangle to write in pixels.
503 * @param config the pixel config of the source buffer
504 * @param buffer memory to read the rectangle from.
505 * @param rowBytes number of bytes bewtween consecutive rows. Zero
506 * means rows are tightly packed.
507 */
508 void writeRenderTargetPixels(GrRenderTarget* target,
509 int left, int top, int width, int height,
510 GrPixelConfig config, const void* buffer,
511 size_t rowBytes) {
512 this->internalWriteRenderTargetPixels(target, left, top, width, height,
513 config, buffer, rowBytes, 0);
514 }
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000515
516 /**
517 * Reads a rectangle of pixels from a texture.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000518 * @param texture the texture to read from.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000519 * @param left left edge of the rectangle to read (inclusive)
520 * @param top top edge of the rectangle to read (inclusive)
521 * @param width width of rectangle to read in pixels.
522 * @param height height of rectangle to read in pixels.
523 * @param config the pixel config of the destination buffer
524 * @param buffer memory to read the rectangle into.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000525 * @param rowBytes number of bytes bewtween consecutive rows. Zero
526 * means rows are tightly packed.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000527 *
528 * @return true if the read succeeded, false if not. The read can fail
bsalomon@google.com6f379512011-11-16 20:36:03 +0000529 * because of an unsupported pixel config.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000530 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000531 bool readTexturePixels(GrTexture* texture,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000532 int left, int top, int width, int height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000533 GrPixelConfig config, void* buffer,
534 size_t rowBytes) {
535 return this->internalReadTexturePixels(texture, left, top,
536 width, height,
537 config, buffer, rowBytes, 0);
538 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000539
540 /**
bsalomon@google.com6f379512011-11-16 20:36:03 +0000541 * Writes a rectangle of pixels to a texture.
542 * @param texture the render target to read from.
543 * @param left left edge of the rectangle to write (inclusive)
544 * @param top top edge of the rectangle to write (inclusive)
545 * @param width width of rectangle to write in pixels.
546 * @param height height of rectangle to write in pixels.
547 * @param config the pixel config of the source buffer
548 * @param buffer memory to read pixels from
549 * @param rowBytes number of bytes bewtween consecutive rows. Zero
550 * means rows are tightly packed.
bsalomon@google.com27847de2011-02-22 20:59:41 +0000551 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000552 void writeTexturePixels(GrTexture* texture,
553 int left, int top, int width, int height,
554 GrPixelConfig config, const void* buffer,
555 size_t rowBytes) {
556 this->internalWriteTexturePixels(texture, left, top, width, height,
557 config, buffer, rowBytes, 0);
558 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000559 /**
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +0000560 * Copies all texels from one texture to another.
561 * @param src the texture to copy from.
562 * @param dst the render target to copy to.
563 */
564 void copyTexture(GrTexture* src, GrRenderTarget* dst);
565 /**
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000566 * Applies a 1D convolution kernel in the X direction to a rectangle of
567 * pixels from a given texture.
568 * @param texture the texture to read from
569 * @param rect the destination rectangle
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000570 * @param kernel the convolution kernel (kernelWidth elements)
571 * @param kernelWidth the width of the convolution kernel
572 */
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000573 void convolveInX(GrTexture* texture,
574 const SkRect& rect,
575 const float* kernel,
576 int kernelWidth);
577 /**
578 * Applies a 1D convolution kernel in the Y direction to a rectangle of
579 * pixels from a given texture.
580 * direction.
581 * @param texture the texture to read from
582 * @param rect the destination rectangle
583 * @param kernel the convolution kernel (kernelWidth elements)
584 * @param kernelWidth the width of the convolution kernel
585 */
586 void convolveInY(GrTexture* texture,
587 const SkRect& rect,
588 const float* kernel,
589 int kernelWidth);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000590 ///////////////////////////////////////////////////////////////////////////
591 // Helpers
592
593 class AutoRenderTarget : ::GrNoncopyable {
594 public:
595 AutoRenderTarget(GrContext* context, GrRenderTarget* target) {
596 fContext = NULL;
597 fPrevTarget = context->getRenderTarget();
598 if (fPrevTarget != target) {
599 context->setRenderTarget(target);
600 fContext = context;
601 }
602 }
603 ~AutoRenderTarget() {
604 if (fContext) {
605 fContext->setRenderTarget(fPrevTarget);
606 }
607 }
608 private:
609 GrContext* fContext;
610 GrRenderTarget* fPrevTarget;
611 };
612
613
614 ///////////////////////////////////////////////////////////////////////////
615 // Functions intended for internal use only.
616 GrGpu* getGpu() { return fGpu; }
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000617 const GrGpu* getGpu() const { return fGpu; }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000618 GrFontCache* getFontCache() { return fFontCache; }
619 GrDrawTarget* getTextTarget(const GrPaint& paint);
620 void flushText();
621 const GrIndexBuffer* getQuadIndexBuffer() const;
bsalomon@google.com05ef5102011-05-02 21:14:59 +0000622 void resetStats();
623 const GrGpuStats& getStats() const;
624 void printStats() const;
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000625 /**
626 * Stencil buffers add themselves to the cache using
627 * addAndLockStencilBuffer. When a SB's RT-attachment count
628 * reaches zero the SB unlocks itself using unlockStencilBuffer and is
629 * eligible for purging. findStencilBuffer is called to check the cache for
630 * a SB that matching an RT's criteria. If a match is found that has been
631 * unlocked (its attachment count has reached 0) then it will be relocked.
632 */
633 GrResourceEntry* addAndLockStencilBuffer(GrStencilBuffer* sb);
634 void unlockStencilBuffer(GrResourceEntry* sbEntry);
635 GrStencilBuffer* findStencilBuffer(int width, int height, int sampleCnt);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000636
637private:
638 // used to keep track of when we need to flush the draw buffer
639 enum DrawCategory {
640 kBuffered_DrawCategory, // last draw was inserted in draw buffer
641 kUnbuffered_DrawCategory, // last draw was not inserted in the draw buffer
642 kText_DrawCategory // text context was last to draw
643 };
644 DrawCategory fLastDrawCategory;
645
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000646 GrGpu* fGpu;
647 GrResourceCache* fTextureCache;
648 GrFontCache* fFontCache;
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000649
bsalomon@google.com30085192011-08-19 15:42:31 +0000650 GrPathRendererChain* fPathRendererChain;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000651
652 GrVertexBufferAllocPool* fDrawBufferVBAllocPool;
653 GrIndexBufferAllocPool* fDrawBufferIBAllocPool;
654 GrInOrderDrawBuffer* fDrawBuffer;
655
bsalomon@google.com205d4602011-04-25 12:43:45 +0000656 GrIndexBuffer* fAAFillRectIndexBuffer;
657 GrIndexBuffer* fAAStrokeRectIndexBuffer;
bsalomon@google.com91958362011-06-13 17:58:13 +0000658 int fMaxOffscreenAASize;
bsalomon@google.com205d4602011-04-25 12:43:45 +0000659
bsalomon@google.com27847de2011-02-22 20:59:41 +0000660 GrContext(GrGpu* gpu);
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000661
bsalomon@google.com205d4602011-04-25 12:43:45 +0000662 void fillAARect(GrDrawTarget* target,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000663 const GrRect& devRect,
664 bool useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000665
666 void strokeAARect(GrDrawTarget* target,
bsalomon@google.com205d4602011-04-25 12:43:45 +0000667 const GrRect& devRect,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000668 const GrVec& devStrokeSize,
669 bool useVertexCoverage);
bsalomon@google.com205d4602011-04-25 12:43:45 +0000670
671 inline int aaFillRectIndexCount() const;
672 GrIndexBuffer* aaFillRectIndexBuffer();
673
674 inline int aaStrokeRectIndexCount() const;
675 GrIndexBuffer* aaStrokeRectIndexBuffer();
676
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000677 void setupDrawBuffer();
678
bsalomon@google.com27847de2011-02-22 20:59:41 +0000679 void flushDrawBuffer();
680
bsalomon@google.combc4b6542011-11-19 13:56:11 +0000681 void setPaint(const GrPaint& paint, GrDrawTarget* target);
bsalomon@google.com27847de2011-02-22 20:59:41 +0000682
bsalomon@google.com27847de2011-02-22 20:59:41 +0000683 GrDrawTarget* prepareToDraw(const GrPaint& paint, DrawCategory drawType);
684
bsalomon@google.com289533a2011-10-27 12:34:25 +0000685 GrPathRenderer* getPathRenderer(const GrPath& path,
686 GrPathFill fill,
687 bool antiAlias);
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000688
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000689 struct OffscreenRecord;
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000690
bsalomon@google.com91958362011-06-13 17:58:13 +0000691 // determines whether offscreen AA should be applied
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000692 bool doOffscreenAA(GrDrawTarget* target,
bsalomon@google.com471d4712011-08-23 15:45:25 +0000693 bool isHairLines) const;
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000694
bsalomon@google.com91958362011-06-13 17:58:13 +0000695 // attempts to setup offscreen AA. All paint state must be transferred to
696 // target by the time this is called.
697 bool prepareForOffscreenAA(GrDrawTarget* target,
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000698 bool requireStencil,
bsalomon@google.com8295dc12011-05-02 12:53:34 +0000699 const GrIRect& boundRect,
tomhudson@google.comd22b6e42011-06-24 15:53:40 +0000700 GrPathRenderer* pr,
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000701 OffscreenRecord* record);
702
bsalomon@google.com91958362011-06-13 17:58:13 +0000703 // sets up target to draw coverage to the supersampled render target
704 void setupOffscreenAAPass1(GrDrawTarget* target,
705 const GrIRect& boundRect,
706 int tileX, int tileY,
707 OffscreenRecord* record);
708
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000709 // sets up target to sample coverage of supersampled render target back
710 // to the main render target using stage kOffscreenStage.
bsalomon@google.com91958362011-06-13 17:58:13 +0000711 void doOffscreenAAPass2(GrDrawTarget* target,
712 const GrPaint& paint,
713 const GrIRect& boundRect,
714 int tileX, int tileY,
715 OffscreenRecord* record);
716
717 // restored the draw target state and releases offscreen target to cache
tomhudson@google.comd22b6e42011-06-24 15:53:40 +0000718 void cleanupOffscreenAA(GrDrawTarget* target,
719 GrPathRenderer* pr,
720 OffscreenRecord* record);
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000721
722 void convolve(GrTexture* texture,
723 const SkRect& rect,
724 float imageIncrement[2],
725 const float* kernel,
726 int kernelWidth);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000727
728 /**
729 * Flags to the internal read/write pixels funcs
730 */
731 enum PixelOpsFlags {
732 kDontFlush_PixelOpsFlag = 0x1,
733 };
734
735 bool internalReadRenderTargetPixels(GrRenderTarget* target,
736 int left, int top,
737 int width, int height,
738 GrPixelConfig config, void* buffer,
739 size_t rowBytes, uint32_t flags);
740
741 void internalWriteRenderTargetPixels(GrRenderTarget* target,
742 int left, int top,
743 int width, int height,
744 GrPixelConfig, const void* buffer,
745 size_t rowBytes, uint32_t flags);
746
747 bool internalReadTexturePixels(GrTexture* texture,
748 int left, int top,
749 int width, int height,
750 GrPixelConfig config, void* buffer,
751 size_t rowBytes, uint32_t flags);
752
753 void internalWriteTexturePixels(GrTexture* texture,
754 int left, int top,
755 int width, int height,
756 GrPixelConfig config, const void* buffer,
757 size_t rowBytes, uint32_t flags);
758 // needed for access to internalWriteTexturePixels. TODO: make GrContext
759 // be a facade for an internal class. Then functions that are public on the
760 // internal class would have only be callable in src/gpu. The facade would
761 // only have to functions necessary for clients.
762 friend class GrAtlas;
763
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000764 // computes vertex layout bits based on the paint. If paint expresses
765 // a texture for a stage, the stage coords will be bound to postitions
766 // unless hasTexCoords[s]==true in which case stage s's input coords
767 // are bound to tex coord index s. hasTexCoords == NULL is a shortcut
768 // for an array where all the values are false.
769 static int PaintStageVertexLayoutBits(
770 const GrPaint& paint,
771 const bool hasTexCoords[GrPaint::kTotalStages]);
772
bsalomon@google.com27847de2011-02-22 20:59:41 +0000773};
774
775/**
776 * Save/restore the view-matrix in the context.
777 */
778class GrAutoMatrix : GrNoncopyable {
779public:
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000780 GrAutoMatrix() : fContext(NULL) {}
bsalomon@google.com27847de2011-02-22 20:59:41 +0000781 GrAutoMatrix(GrContext* ctx) : fContext(ctx) {
782 fMatrix = ctx->getMatrix();
783 }
784 GrAutoMatrix(GrContext* ctx, const GrMatrix& matrix) : fContext(ctx) {
785 fMatrix = ctx->getMatrix();
786 ctx->setMatrix(matrix);
787 }
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000788 void set(GrContext* ctx) {
789 if (NULL != fContext) {
790 fContext->setMatrix(fMatrix);
791 }
792 fMatrix = ctx->getMatrix();
793 fContext = ctx;
794 }
795 void set(GrContext* ctx, const GrMatrix& matrix) {
796 if (NULL != fContext) {
797 fContext->setMatrix(fMatrix);
798 }
799 fMatrix = ctx->getMatrix();
800 ctx->setMatrix(matrix);
801 fContext = ctx;
802 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000803 ~GrAutoMatrix() {
bsalomon@google.com4f83be82011-09-12 13:52:51 +0000804 if (NULL != fContext) {
805 fContext->setMatrix(fMatrix);
806 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000807 }
808
809private:
810 GrContext* fContext;
811 GrMatrix fMatrix;
812};
813
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000814/**
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000815 * Gets and locks a scratch texture from a descriptor using
816 * either exact or approximate criteria. Unlocks texture in
817 * the destructor.
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000818 */
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000819class GrAutoScratchTexture : ::GrNoncopyable {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000820public:
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000821 GrAutoScratchTexture()
822 : fContext(NULL) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000823 }
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000824
825 GrAutoScratchTexture(GrContext* context,
826 const GrTextureDesc& desc,
827 GrContext::ScratchTexMatch match =
828 GrContext::kApprox_ScratchTexMatch)
829 : fContext(NULL) {
830 this->set(context, desc, match);
831 }
832
833 ~GrAutoScratchTexture() {
834 if (NULL != fContext) {
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000835 fContext->unlockTexture(fEntry);
836 }
837 }
bsalomon@google.com84223112011-07-14 14:45:44 +0000838
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000839 GrTexture* set(GrContext* context,
840 const GrTextureDesc& desc,
841 GrContext::ScratchTexMatch match =
842 GrContext::kApprox_ScratchTexMatch) {
843 if (NULL != fContext) {
844 fContext->unlockTexture(fEntry);
845 }
846 fContext = context;
847 if (NULL != fContext) {
848 fEntry = fContext->lockScratchTexture(desc, match);
849 GrTexture* ret = fEntry.texture();
850 if (NULL == ret) {
851 fContext = NULL;
852 }
853 return ret;
854 } else {
855 return NULL;
856 }
857 }
858
859 GrTexture* texture() { return fEntry.texture(); }
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000860private:
bsalomon@google.com50398bf2011-07-26 20:45:30 +0000861 GrContext* fContext;
862 GrContext::TextureCacheEntry fEntry;
senorblanco@chromium.orgaadd9f82011-07-12 19:44:51 +0000863};
864
bsalomon@google.com27847de2011-02-22 20:59:41 +0000865#endif