2011-02-22 20:59:41 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
#ifndef GrContext_DEFINED
|
|
|
|
#define GrContext_DEFINED
|
|
|
|
|
2012-10-17 12:53:54 +00:00
|
|
|
#include "GrColor.h"
|
2012-06-12 00:32:28 +00:00
|
|
|
#include "GrAARectRenderer.h"
|
2012-08-01 20:08:47 +00:00
|
|
|
#include "GrClipData.h"
|
2012-11-01 18:02:54 +00:00
|
|
|
#include "SkMatrix.h"
|
2012-10-17 12:53:54 +00:00
|
|
|
#include "GrPaint.h"
|
2012-12-10 19:10:17 +00:00
|
|
|
#include "GrPathRendererChain.h"
|
2012-08-23 18:09:54 +00:00
|
|
|
#include "GrRenderTarget.h"
|
2012-10-17 12:53:54 +00:00
|
|
|
#include "GrRefCnt.h"
|
|
|
|
#include "GrTexture.h"
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-03-05 20:41:22 +00:00
|
|
|
class GrAutoScratchTexture;
|
2012-03-30 14:35:04 +00:00
|
|
|
class GrDrawState;
|
2011-08-17 13:42:46 +00:00
|
|
|
class GrDrawTarget;
|
2012-10-24 18:28:34 +00:00
|
|
|
class GrEffect;
|
2011-02-22 20:59:41 +00:00
|
|
|
class GrFontCache;
|
2011-05-02 21:14:59 +00:00
|
|
|
class GrGpu;
|
2011-08-17 13:42:46 +00:00
|
|
|
class GrIndexBuffer;
|
2011-02-22 20:59:41 +00:00
|
|
|
class GrIndexBufferAllocPool;
|
|
|
|
class GrInOrderDrawBuffer;
|
2013-03-22 18:34:09 +00:00
|
|
|
class GrOvalRenderer;
|
2011-08-17 13:42:46 +00:00
|
|
|
class GrPathRenderer;
|
2011-07-26 20:45:30 +00:00
|
|
|
class GrResourceEntry;
|
|
|
|
class GrResourceCache;
|
2011-08-08 17:01:14 +00:00
|
|
|
class GrStencilBuffer;
|
2012-10-17 12:53:54 +00:00
|
|
|
class GrTextureParams;
|
2011-08-17 13:42:46 +00:00
|
|
|
class GrVertexBuffer;
|
2011-07-26 20:45:30 +00:00
|
|
|
class GrVertexBufferAllocPool;
|
2012-05-23 13:19:12 +00:00
|
|
|
class GrSoftwarePathRenderer;
|
2012-12-17 21:16:45 +00:00
|
|
|
class SkStrokeRec;
|
2011-07-26 20:45:30 +00:00
|
|
|
|
2011-03-21 19:51:57 +00:00
|
|
|
class GR_API GrContext : public GrRefCnt {
|
2011-02-22 20:59:41 +00:00
|
|
|
public:
|
2012-06-26 20:16:17 +00:00
|
|
|
SK_DECLARE_INST_COUNT(GrContext)
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
2012-10-25 18:43:28 +00:00
|
|
|
* Creates a GrContext for a backend context.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2012-10-25 18:43:28 +00:00
|
|
|
static GrContext* Create(GrBackend, GrBackendContext);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-06-15 14:10:09 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of GrContext instances for the current thread.
|
|
|
|
*/
|
|
|
|
static int GetThreadInstanceCount();
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
virtual ~GrContext();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The GrContext normally assumes that no outsider is setting state
|
|
|
|
* within the underlying 3D API's context/device/whatever. This call informs
|
|
|
|
* the context that the state was modified and it should resend. Shouldn't
|
|
|
|
* be called frequently for good performance.
|
2013-06-28 18:57:35 +00:00
|
|
|
* The flag bits, state, is dpendent on which backend is used by the
|
|
|
|
* context, either GL or D3D (possible in future).
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2013-06-28 18:57:35 +00:00
|
|
|
void resetContext(uint32_t state = kAll_GrBackendState);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-09-24 19:33:59 +00:00
|
|
|
/**
|
|
|
|
* Callback function to allow classes to cleanup on GrContext destruction.
|
|
|
|
* The 'info' field is filled in with the 'info' passed to addCleanUp.
|
|
|
|
*/
|
|
|
|
typedef void (*PFCleanUpFunc)(const GrContext* context, void* info);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a function to be called from within GrContext's destructor.
|
|
|
|
* This gives classes a chance to free resources held on a per context basis.
|
|
|
|
* The 'info' parameter will be stored and passed to the callback function.
|
|
|
|
*/
|
|
|
|
void addCleanUp(PFCleanUpFunc cleanUp, void* info) {
|
|
|
|
CleanUpData* entry = fCleanUpData.push();
|
|
|
|
|
|
|
|
entry->fFunc = cleanUp;
|
|
|
|
entry->fInfo = info;
|
|
|
|
}
|
|
|
|
|
2011-03-30 21:26:44 +00:00
|
|
|
/**
|
2012-10-15 14:25:31 +00:00
|
|
|
* Abandons all GPU resources, assumes 3D API state is unknown. Call this
|
2011-03-30 21:26:44 +00:00
|
|
|
* if you have lost the associated GPU context, and thus internal texture,
|
|
|
|
* buffer, etc. references/IDs are now invalid. Should be called even when
|
|
|
|
* GrContext is no longer going to be used for two reasons:
|
|
|
|
* 1) ~GrContext will not try to free the objects in the 3D API.
|
|
|
|
* 2) If you've created GrResources that outlive the GrContext they will
|
|
|
|
* be marked as invalid (GrResource::isValid()) and won't attempt to
|
|
|
|
* free their underlying resource in the 3D API.
|
|
|
|
* Content drawn since the last GrContext::flush() may be lost.
|
|
|
|
*/
|
|
|
|
void contextLost();
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2011-06-08 22:55:10 +00:00
|
|
|
/**
|
|
|
|
* Similar to contextLost, but makes no attempt to reset state.
|
|
|
|
* Use this method when GrContext destruction is pending, but
|
|
|
|
* the graphics context is destroyed first.
|
|
|
|
*/
|
|
|
|
void contextDestroyed();
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
2012-10-15 14:25:31 +00:00
|
|
|
* Frees GPU created by the context. Can be called to reduce GPU memory
|
2011-03-30 21:26:44 +00:00
|
|
|
* pressure.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2011-03-30 21:26:44 +00:00
|
|
|
void freeGpuResources();
|
|
|
|
|
2012-06-22 15:15:59 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of bytes of GPU memory hosted by the texture cache.
|
|
|
|
*/
|
|
|
|
size_t getGpuTextureCacheBytes() const;
|
|
|
|
|
2011-03-30 21:26:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Textures
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2011-12-12 16:10:08 +00:00
|
|
|
/**
|
2013-01-24 14:46:47 +00:00
|
|
|
* Creates a new entry, based on the specified key and texture and returns it. The caller owns a
|
|
|
|
* ref on the returned texture which must be balanced by a call to unref.
|
2011-12-12 16:10:08 +00:00
|
|
|
*
|
2012-10-15 14:25:31 +00:00
|
|
|
* @param params The texture params used to draw a texture may help determine
|
2012-07-25 21:27:09 +00:00
|
|
|
* the cache entry used. (e.g. different versions may exist
|
|
|
|
* for different wrap modes on GPUs with limited NPOT
|
|
|
|
* texture support). NULL implies clamp wrap modes.
|
2011-12-12 16:10:08 +00:00
|
|
|
* @param desc Description of the texture properties.
|
2012-12-20 15:13:01 +00:00
|
|
|
* @param cacheID Cache-specific properties (e.g., texture gen ID)
|
2011-12-12 16:10:08 +00:00
|
|
|
* @param srcData Pointer to the pixel values.
|
|
|
|
* @param rowBytes The number of bytes between rows of the texture. Zero
|
|
|
|
* implies tightly packed rows.
|
|
|
|
*/
|
2012-09-09 14:44:15 +00:00
|
|
|
GrTexture* createTexture(const GrTextureParams* params,
|
|
|
|
const GrTextureDesc& desc,
|
2012-12-20 15:13:01 +00:00
|
|
|
const GrCacheID& cacheID,
|
2012-09-09 14:44:15 +00:00
|
|
|
void* srcData, size_t rowBytes);
|
2011-12-12 16:10:08 +00:00
|
|
|
|
2011-07-26 20:45:30 +00:00
|
|
|
/**
|
2013-01-24 14:46:47 +00:00
|
|
|
* Search for an entry based on key and dimensions. If found, ref it and return it. The return
|
|
|
|
* value will be NULL if not found. The caller must balance with a call to unref.
|
2011-12-12 16:10:08 +00:00
|
|
|
*
|
2012-07-25 21:27:09 +00:00
|
|
|
* @param desc Description of the texture properties.
|
2012-12-20 15:13:01 +00:00
|
|
|
* @param cacheID Cache-specific properties (e.g., texture gen ID)
|
2012-10-15 14:25:31 +00:00
|
|
|
* @param params The texture params used to draw a texture may help determine
|
2012-07-25 21:27:09 +00:00
|
|
|
* the cache entry used. (e.g. different versions may exist
|
|
|
|
* for different wrap modes on GPUs with limited NPOT
|
|
|
|
* texture support). NULL implies clamp wrap modes.
|
2011-07-26 20:45:30 +00:00
|
|
|
*/
|
2013-01-24 14:46:47 +00:00
|
|
|
GrTexture* findAndRefTexture(const GrTextureDesc& desc,
|
|
|
|
const GrCacheID& cacheID,
|
|
|
|
const GrTextureParams* params);
|
2011-11-30 14:13:48 +00:00
|
|
|
/**
|
|
|
|
* Determines whether a texture is in the cache. If the texture is found it
|
|
|
|
* will not be locked or returned. This call does not affect the priority of
|
|
|
|
* the texture for deletion.
|
|
|
|
*/
|
2012-06-07 12:08:45 +00:00
|
|
|
bool isTextureInCache(const GrTextureDesc& desc,
|
2012-12-20 15:13:01 +00:00
|
|
|
const GrCacheID& cacheID,
|
2012-07-25 21:27:09 +00:00
|
|
|
const GrTextureParams* params) const;
|
2011-07-26 20:45:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enum that determines how closely a returned scratch texture must match
|
|
|
|
* a provided GrTextureDesc.
|
|
|
|
*/
|
|
|
|
enum ScratchTexMatch {
|
|
|
|
/**
|
|
|
|
* Finds a texture that exactly matches the descriptor.
|
|
|
|
*/
|
|
|
|
kExact_ScratchTexMatch,
|
|
|
|
/**
|
|
|
|
* Finds a texture that approximately matches the descriptor. Will be
|
|
|
|
* at least as large in width and height as desc specifies. If desc
|
|
|
|
* specifies that texture is a render target then result will be a
|
|
|
|
* render target. If desc specifies a render target and doesn't set the
|
|
|
|
* no stencil flag then result will have a stencil. Format and aa level
|
|
|
|
* will always match.
|
|
|
|
*/
|
|
|
|
kApprox_ScratchTexMatch
|
|
|
|
};
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
2011-04-25 15:51:06 +00:00
|
|
|
* Returns a texture matching the desc. It's contents are unknown. Subsequent
|
|
|
|
* requests with the same descriptor are not guaranteed to return the same
|
|
|
|
* texture. The same texture is guaranteed not be returned again until it is
|
2013-01-24 14:46:47 +00:00
|
|
|
* unlocked. Call must be balanced with an unlockTexture() call. The caller
|
|
|
|
* owns a ref on the returned texture and must balance with a call to unref.
|
2011-04-26 13:18:16 +00:00
|
|
|
*
|
|
|
|
* Textures created by createAndLockTexture() hide the complications of
|
2012-08-23 18:09:54 +00:00
|
|
|
* tiling non-power-of-two textures on APIs that don't support this (e.g.
|
2012-10-15 14:25:31 +00:00
|
|
|
* unextended GLES2). Tiling a NPOT texture created by lockScratchTexture on
|
2011-04-26 13:18:16 +00:00
|
|
|
* such an API will create gaps in the tiling pattern. This includes clamp
|
|
|
|
* mode. (This may be addressed in a future update.)
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2013-01-24 14:46:47 +00:00
|
|
|
GrTexture* lockAndRefScratchTexture(const GrTextureDesc&, ScratchTexMatch match);
|
2011-06-16 18:05:35 +00:00
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
2012-12-20 15:13:01 +00:00
|
|
|
* When done with an entry, call unlockScratchTexture(entry) on it, which returns
|
2013-01-24 14:46:47 +00:00
|
|
|
* it to the cache, where it may be purged. This does not unref the texture.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2012-09-09 14:44:15 +00:00
|
|
|
void unlockScratchTexture(GrTexture* texture);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-09-07 19:44:33 +00:00
|
|
|
/**
|
|
|
|
* This method should be called whenever a GrTexture is unreffed or
|
|
|
|
* switched from exclusive to non-exclusive. This
|
|
|
|
* gives the resource cache a chance to discard unneeded textures.
|
2012-09-09 14:44:15 +00:00
|
|
|
* Note: this entry point will be removed once totally ref-driven
|
|
|
|
* cache maintenance is implemented
|
2012-09-07 19:44:33 +00:00
|
|
|
*/
|
|
|
|
void purgeCache();
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
|
|
|
* Creates a texture that is outside the cache. Does not count against
|
|
|
|
* cache's budget.
|
|
|
|
*/
|
2012-06-07 12:08:45 +00:00
|
|
|
GrTexture* createUncachedTexture(const GrTextureDesc& desc,
|
2011-02-22 20:59:41 +00:00
|
|
|
void* srcData,
|
|
|
|
size_t rowBytes);
|
|
|
|
|
|
|
|
/**
|
2012-07-25 21:27:09 +00:00
|
|
|
* Returns true if the specified use of an indexed texture is supported.
|
|
|
|
* Support may depend upon whether the texture params indicate that the
|
|
|
|
* texture will be tiled. Passing NULL for the texture params indicates
|
|
|
|
* clamp mode.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2012-07-25 21:27:09 +00:00
|
|
|
bool supportsIndex8PixelConfig(const GrTextureParams*,
|
2011-08-23 20:54:07 +00:00
|
|
|
int width,
|
|
|
|
int height) const;
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
2012-06-22 15:15:59 +00:00
|
|
|
* Return the current texture cache limits.
|
|
|
|
*
|
|
|
|
* @param maxTextures If non-null, returns maximum number of textures that
|
|
|
|
* can be held in the cache.
|
|
|
|
* @param maxTextureBytes If non-null, returns maximum number of bytes of
|
|
|
|
* texture memory that can be held in the cache.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2012-06-22 15:15:59 +00:00
|
|
|
void getTextureCacheLimits(int* maxTextures, size_t* maxTextureBytes) const;
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
2012-06-22 15:15:59 +00:00
|
|
|
* Specify the texture cache limits. If the current cache exceeds either
|
|
|
|
* of these, it will be purged (LRU) to keep the cache within these limits.
|
2011-02-22 20:59:41 +00:00
|
|
|
*
|
2012-06-22 15:15:59 +00:00
|
|
|
* @param maxTextures The maximum number of textures that can be held in
|
|
|
|
* the cache.
|
2011-02-22 20:59:41 +00:00
|
|
|
* @param maxTextureBytes The maximum number of bytes of texture memory
|
|
|
|
* that can be held in the cache.
|
|
|
|
*/
|
2012-06-22 15:15:59 +00:00
|
|
|
void setTextureCacheLimits(int maxTextures, size_t maxTextureBytes);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
2012-10-15 14:25:31 +00:00
|
|
|
* Return the max width or height of a texture supported by the current GPU.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2011-06-13 17:58:13 +00:00
|
|
|
int getMaxTextureSize() const;
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Render targets
|
|
|
|
|
|
|
|
/**
|
2011-04-11 17:58:48 +00:00
|
|
|
* Sets the render target.
|
2013-05-28 17:25:49 +00:00
|
|
|
* @param target the render target to set.
|
2011-04-11 17:58:48 +00:00
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
void setRenderTarget(GrRenderTarget* target) {
|
|
|
|
fRenderTarget.reset(SkSafeRef(target));
|
|
|
|
}
|
2011-04-11 17:58:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current render target.
|
2013-05-28 17:25:49 +00:00
|
|
|
* @return the currently bound render target.
|
2011-04-11 17:58:48 +00:00
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
const GrRenderTarget* getRenderTarget() const { return fRenderTarget.get(); }
|
|
|
|
GrRenderTarget* getRenderTarget() { return fRenderTarget.get(); }
|
2011-04-11 17:58:48 +00:00
|
|
|
|
2012-06-15 13:58:07 +00:00
|
|
|
GrAARectRenderer* getAARectRenderer() { return fAARectRenderer; }
|
|
|
|
|
2012-04-10 19:26:38 +00:00
|
|
|
/**
|
|
|
|
* Can the provided configuration act as a color render target?
|
|
|
|
*/
|
|
|
|
bool isConfigRenderable(GrPixelConfig config) const;
|
|
|
|
|
2013-03-19 13:58:55 +00:00
|
|
|
/**
|
|
|
|
* Return the max width or height of a render target supported by the
|
|
|
|
* current GPU.
|
|
|
|
*/
|
|
|
|
int getMaxRenderTargetSize() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the max sample count for a render target. It will be 0 if MSAA
|
|
|
|
* is not supported.
|
|
|
|
*/
|
|
|
|
int getMaxSampleCount() const;
|
|
|
|
|
2011-04-11 17:58:48 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2012-10-25 18:43:28 +00:00
|
|
|
// Backend Surfaces
|
2011-04-11 17:58:48 +00:00
|
|
|
|
|
|
|
/**
|
2011-11-07 13:29:52 +00:00
|
|
|
* Wraps an existing texture with a GrTexture object.
|
|
|
|
*
|
|
|
|
* OpenGL: if the object is a texture Gr may change its GL texture params
|
|
|
|
* when it is drawn.
|
|
|
|
*
|
|
|
|
* @param desc description of the object to create.
|
|
|
|
*
|
|
|
|
* @return GrTexture object or NULL on failure.
|
|
|
|
*/
|
2012-10-25 18:43:28 +00:00
|
|
|
GrTexture* wrapBackendTexture(const GrBackendTextureDesc& desc);
|
2011-11-07 13:29:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wraps an existing render target with a GrRenderTarget object. It is
|
2012-10-25 18:43:28 +00:00
|
|
|
* similar to wrapBackendTexture but can be used to draw into surfaces
|
2011-11-07 13:29:52 +00:00
|
|
|
* that are not also textures (e.g. FBO 0 in OpenGL, or an MSAA buffer that
|
|
|
|
* the client will resolve to a texture).
|
|
|
|
*
|
|
|
|
* @param desc description of the object to create.
|
|
|
|
*
|
|
|
|
* @return GrTexture object or NULL on failure.
|
|
|
|
*/
|
2012-10-25 18:43:28 +00:00
|
|
|
GrRenderTarget* wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc);
|
2011-11-07 13:29:52 +00:00
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Matrix state
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current transformation matrix.
|
|
|
|
* @return the current matrix.
|
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
const SkMatrix& getMatrix() const { return fViewMatrix; }
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the transformation matrix.
|
|
|
|
* @param m the matrix to set.
|
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
void setMatrix(const SkMatrix& m) { fViewMatrix = m; }
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-10-08 14:48:36 +00:00
|
|
|
/**
|
|
|
|
* Sets the current transformation matrix to identity.
|
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
void setIdentityMatrix() { fViewMatrix.reset(); }
|
2012-10-08 14:48:36 +00:00
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
|
|
|
* Concats the current matrix. The passed matrix is applied before the
|
|
|
|
* current matrix.
|
|
|
|
* @param m the matrix to concat.
|
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
void concatMatrix(const SkMatrix& m) { fViewMatrix.preConcat(m); }
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Clip state
|
|
|
|
/**
|
|
|
|
* Gets the current clip.
|
|
|
|
* @return the current clip.
|
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
const GrClipData* getClip() const { return fClip; }
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the clip.
|
2012-07-26 18:52:16 +00:00
|
|
|
* @param clipData the clip to set.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2013-05-28 17:25:49 +00:00
|
|
|
void setClip(const GrClipData* clipData) { fClip = clipData; }
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Draws
|
|
|
|
|
|
|
|
/**
|
2011-04-27 19:55:29 +00:00
|
|
|
* Clear the entire or rect of the render target, ignoring any clips.
|
|
|
|
* @param rect the rect to clear or the whole thing if rect is NULL.
|
|
|
|
* @param color the color to clear to.
|
2012-06-21 20:15:48 +00:00
|
|
|
* @param target if non-NULL, the render target to clear otherwise clear
|
|
|
|
* the current render target
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2012-08-23 18:09:54 +00:00
|
|
|
void clear(const GrIRect* rect, GrColor color,
|
2012-06-21 20:15:48 +00:00
|
|
|
GrRenderTarget* target = NULL);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw everywhere (respecting the clip) with the paint.
|
|
|
|
*/
|
|
|
|
void drawPaint(const GrPaint& paint);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw the rect using a paint.
|
|
|
|
* @param paint describes how to color pixels.
|
|
|
|
* @param strokeWidth If strokeWidth < 0, then the rect is filled, else
|
|
|
|
* the rect is mitered stroked based on strokeWidth. If
|
|
|
|
* strokeWidth == 0, then the stroke is always a single
|
|
|
|
* pixel thick.
|
|
|
|
* @param matrix Optional matrix applied to the rect. Applied before
|
|
|
|
* context's matrix or the paint's matrix.
|
|
|
|
* The rects coords are used to access the paint (through texture matrix)
|
|
|
|
*/
|
|
|
|
void drawRect(const GrPaint& paint,
|
|
|
|
const GrRect&,
|
2012-11-01 17:12:34 +00:00
|
|
|
SkScalar strokeWidth = -1,
|
2012-11-01 18:02:54 +00:00
|
|
|
const SkMatrix* matrix = NULL);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
2013-03-20 19:19:53 +00:00
|
|
|
* Maps a rect of local coordinates onto the a rect of destination
|
|
|
|
* coordinates. Each rect can optionally be transformed. The localRect
|
2011-02-22 20:59:41 +00:00
|
|
|
* is stretched over the dstRect. The dstRect is transformed by the
|
2013-03-20 19:19:53 +00:00
|
|
|
* context's matrix. Additional optional matrices for both rects can be
|
|
|
|
* provided by parameters.
|
2011-02-22 20:59:41 +00:00
|
|
|
*
|
2013-03-20 19:19:53 +00:00
|
|
|
* @param paint describes how to color pixels.
|
|
|
|
* @param dstRect the destination rect to draw.
|
|
|
|
* @param localRect rect of local coordinates to be mapped onto dstRect
|
|
|
|
* @param dstMatrix Optional matrix to transform dstRect. Applied before context's matrix.
|
|
|
|
* @param localMatrix Optional matrix to transform localRect.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
|
|
|
void drawRectToRect(const GrPaint& paint,
|
|
|
|
const GrRect& dstRect,
|
2013-03-20 19:19:53 +00:00
|
|
|
const GrRect& localRect,
|
2012-11-01 18:02:54 +00:00
|
|
|
const SkMatrix* dstMatrix = NULL,
|
2013-03-20 19:19:53 +00:00
|
|
|
const SkMatrix* localMatrix = NULL);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2013-04-25 15:27:00 +00:00
|
|
|
/**
|
|
|
|
* Draw a roundrect using a paint.
|
|
|
|
*
|
|
|
|
* @param paint describes how to color pixels.
|
|
|
|
* @param rrect the roundrect to draw
|
|
|
|
* @param stroke the stroke information (width, join, cap)
|
|
|
|
*/
|
|
|
|
void drawRRect(const GrPaint& paint,
|
|
|
|
const SkRRect& rrect,
|
|
|
|
const SkStrokeRec& stroke);
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
2011-03-03 13:54:13 +00:00
|
|
|
* Draws a path.
|
2011-02-22 20:59:41 +00:00
|
|
|
*
|
|
|
|
* @param paint describes how to color pixels.
|
2011-05-16 17:21:57 +00:00
|
|
|
* @param path the path to draw
|
2012-12-17 21:16:45 +00:00
|
|
|
* @param stroke the stroke information (width, join, cap)
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2012-12-17 21:16:45 +00:00
|
|
|
void drawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke);
|
2011-05-16 17:21:57 +00:00
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
|
|
|
* Draws vertices with a paint.
|
|
|
|
*
|
|
|
|
* @param paint describes how to color pixels.
|
|
|
|
* @param primitiveType primitives type to draw.
|
|
|
|
* @param vertexCount number of vertices.
|
|
|
|
* @param positions array of vertex positions, required.
|
|
|
|
* @param texCoords optional array of texture coordinates used
|
|
|
|
* to access the paint.
|
|
|
|
* @param colors optional array of per-vertex colors, supercedes
|
|
|
|
* the paint's color field.
|
|
|
|
* @param indices optional array of indices. If NULL vertices
|
|
|
|
* are drawn non-indexed.
|
|
|
|
* @param indexCount if indices is non-null then this is the
|
|
|
|
* number of indices.
|
|
|
|
*/
|
|
|
|
void drawVertices(const GrPaint& paint,
|
|
|
|
GrPrimitiveType primitiveType,
|
|
|
|
int vertexCount,
|
|
|
|
const GrPoint positions[],
|
|
|
|
const GrPoint texs[],
|
|
|
|
const GrColor colors[],
|
|
|
|
const uint16_t indices[],
|
|
|
|
int indexCount);
|
|
|
|
|
2012-04-27 13:05:21 +00:00
|
|
|
/**
|
|
|
|
* Draws an oval.
|
|
|
|
*
|
|
|
|
* @param paint describes how to color pixels.
|
2013-01-22 13:34:01 +00:00
|
|
|
* @param oval the bounding rect of the oval.
|
|
|
|
* @param stroke the stroke information (width, style)
|
2012-04-27 13:05:21 +00:00
|
|
|
*/
|
|
|
|
void drawOval(const GrPaint& paint,
|
2013-01-22 13:34:01 +00:00
|
|
|
const GrRect& oval,
|
|
|
|
const SkStrokeRec& stroke);
|
2012-04-27 13:05:21 +00:00
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Misc.
|
|
|
|
|
2011-03-10 14:13:19 +00:00
|
|
|
/**
|
|
|
|
* Flags that affect flush() behavior.
|
|
|
|
*/
|
|
|
|
enum FlushBits {
|
|
|
|
/**
|
|
|
|
* A client may reach a point where it has partially rendered a frame
|
|
|
|
* through a GrContext that it knows the user will never see. This flag
|
|
|
|
* causes the flush to skip submission of deferred content to the 3D API
|
|
|
|
* during the flush.
|
|
|
|
*/
|
|
|
|
kDiscard_FlushBit = 0x2,
|
|
|
|
};
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
/**
|
|
|
|
* Call to ensure all drawing to the context has been issued to the
|
|
|
|
* underlying 3D API.
|
2011-03-10 14:13:19 +00:00
|
|
|
* @param flagsBitfield flags that control the flushing behavior. See
|
|
|
|
* FlushBits.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2011-03-30 21:26:44 +00:00
|
|
|
void flush(int flagsBitfield = 0);
|
2011-11-16 20:36:03 +00:00
|
|
|
|
2012-08-20 19:22:38 +00:00
|
|
|
/**
|
|
|
|
* These flags can be used with the read/write pixels functions below.
|
|
|
|
*/
|
|
|
|
enum PixelOpsFlags {
|
|
|
|
/** The GrContext will not be flushed. This means that the read or write may occur before
|
|
|
|
previous draws have executed. */
|
|
|
|
kDontFlush_PixelOpsFlag = 0x1,
|
|
|
|
/** The src for write or dst read is unpremultiplied. This is only respected if both the
|
|
|
|
config src and dst configs are an RGBA/BGRA 8888 format. */
|
|
|
|
kUnpremul_PixelOpsFlag = 0x2,
|
|
|
|
};
|
|
|
|
|
2011-04-05 17:08:27 +00:00
|
|
|
/**
|
|
|
|
* Reads a rectangle of pixels from a render target.
|
2012-08-20 19:22:38 +00:00
|
|
|
* @param target the render target to read from. NULL means the current render target.
|
2011-04-05 17:08:27 +00:00
|
|
|
* @param left left edge of the rectangle to read (inclusive)
|
|
|
|
* @param top top edge of the rectangle to read (inclusive)
|
|
|
|
* @param width width of rectangle to read in pixels.
|
|
|
|
* @param height height of rectangle to read in pixels.
|
|
|
|
* @param config the pixel config of the destination buffer
|
|
|
|
* @param buffer memory to read the rectangle into.
|
2012-08-20 19:22:38 +00:00
|
|
|
* @param rowBytes number of bytes bewtween consecutive rows. Zero means rows are tightly
|
|
|
|
* packed.
|
|
|
|
* @param pixelOpsFlags see PixelOpsFlags enum above.
|
2011-04-05 17:08:27 +00:00
|
|
|
*
|
2012-08-20 19:22:38 +00:00
|
|
|
* @return true if the read succeeded, false if not. The read can fail because of an unsupported
|
|
|
|
* pixel config or because no render target is currently set and NULL was passed for
|
|
|
|
* target.
|
2011-04-05 17:08:27 +00:00
|
|
|
*/
|
|
|
|
bool readRenderTargetPixels(GrRenderTarget* target,
|
|
|
|
int left, int top, int width, int height,
|
2012-08-20 19:22:38 +00:00
|
|
|
GrPixelConfig config, void* buffer,
|
|
|
|
size_t rowBytes = 0,
|
|
|
|
uint32_t pixelOpsFlags = 0);
|
2011-11-16 20:36:03 +00:00
|
|
|
|
|
|
|
/**
|
2012-10-15 14:25:31 +00:00
|
|
|
* Copy the src pixels [buffer, row bytes, pixel config] into a render target at the specified
|
2012-08-20 19:22:38 +00:00
|
|
|
* rectangle.
|
|
|
|
* @param target the render target to write into. NULL means the current render target.
|
2011-11-16 20:36:03 +00:00
|
|
|
* @param left left edge of the rectangle to write (inclusive)
|
|
|
|
* @param top top edge of the rectangle to write (inclusive)
|
|
|
|
* @param width width of rectangle to write in pixels.
|
|
|
|
* @param height height of rectangle to write in pixels.
|
|
|
|
* @param config the pixel config of the source buffer
|
|
|
|
* @param buffer memory to read the rectangle from.
|
2012-10-12 14:51:52 +00:00
|
|
|
* @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
|
2012-08-20 19:22:38 +00:00
|
|
|
* packed.
|
|
|
|
* @param pixelOpsFlags see PixelOpsFlags enum above.
|
2013-02-06 18:17:50 +00:00
|
|
|
*
|
|
|
|
* @return true if the write succeeded, false if not. The write can fail because of an
|
|
|
|
* unsupported combination of target and pixel configs.
|
2011-11-16 20:36:03 +00:00
|
|
|
*/
|
2013-02-06 18:17:50 +00:00
|
|
|
bool writeRenderTargetPixels(GrRenderTarget* target,
|
2011-11-16 20:36:03 +00:00
|
|
|
int left, int top, int width, int height,
|
|
|
|
GrPixelConfig config, const void* buffer,
|
2012-08-20 19:22:38 +00:00
|
|
|
size_t rowBytes = 0,
|
|
|
|
uint32_t pixelOpsFlags = 0);
|
2011-04-05 17:08:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads a rectangle of pixels from a texture.
|
2011-11-16 20:36:03 +00:00
|
|
|
* @param texture the texture to read from.
|
2011-04-05 17:08:27 +00:00
|
|
|
* @param left left edge of the rectangle to read (inclusive)
|
|
|
|
* @param top top edge of the rectangle to read (inclusive)
|
|
|
|
* @param width width of rectangle to read in pixels.
|
|
|
|
* @param height height of rectangle to read in pixels.
|
|
|
|
* @param config the pixel config of the destination buffer
|
|
|
|
* @param buffer memory to read the rectangle into.
|
2012-10-12 14:51:52 +00:00
|
|
|
* @param rowBytes number of bytes between consecutive rows. Zero means rows are tightly
|
2012-08-20 19:22:38 +00:00
|
|
|
* packed.
|
|
|
|
* @param pixelOpsFlags see PixelOpsFlags enum above.
|
2011-04-05 17:08:27 +00:00
|
|
|
*
|
2012-08-20 19:22:38 +00:00
|
|
|
* @return true if the read succeeded, false if not. The read can fail because of an unsupported
|
|
|
|
* pixel config.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2011-11-16 20:36:03 +00:00
|
|
|
bool readTexturePixels(GrTexture* texture,
|
2011-04-05 17:08:27 +00:00
|
|
|
int left, int top, int width, int height,
|
2011-11-16 20:36:03 +00:00
|
|
|
GrPixelConfig config, void* buffer,
|
2012-08-20 19:22:38 +00:00
|
|
|
size_t rowBytes = 0,
|
|
|
|
uint32_t pixelOpsFlags = 0);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
|
|
|
/**
|
2011-11-16 20:36:03 +00:00
|
|
|
* Writes a rectangle of pixels to a texture.
|
|
|
|
* @param texture the render target to read from.
|
|
|
|
* @param left left edge of the rectangle to write (inclusive)
|
|
|
|
* @param top top edge of the rectangle to write (inclusive)
|
|
|
|
* @param width width of rectangle to write in pixels.
|
|
|
|
* @param height height of rectangle to write in pixels.
|
|
|
|
* @param config the pixel config of the source buffer
|
|
|
|
* @param buffer memory to read pixels from
|
2012-10-12 14:51:52 +00:00
|
|
|
* @param rowBytes number of bytes between consecutive rows. Zero
|
2011-11-16 20:36:03 +00:00
|
|
|
* means rows are tightly packed.
|
2012-08-20 19:22:38 +00:00
|
|
|
* @param pixelOpsFlags see PixelOpsFlags enum above.
|
2013-02-06 18:17:50 +00:00
|
|
|
* @return true if the write succeeded, false if not. The write can fail because of an
|
|
|
|
* unsupported combination of texture and pixel configs.
|
2011-02-22 20:59:41 +00:00
|
|
|
*/
|
2013-02-06 18:17:50 +00:00
|
|
|
bool writeTexturePixels(GrTexture* texture,
|
2011-11-16 20:36:03 +00:00
|
|
|
int left, int top, int width, int height,
|
|
|
|
GrPixelConfig config, const void* buffer,
|
2012-08-20 19:22:38 +00:00
|
|
|
size_t rowBytes,
|
|
|
|
uint32_t pixelOpsFlags = 0);
|
|
|
|
|
|
|
|
|
2011-12-02 19:11:17 +00:00
|
|
|
/**
|
2012-12-07 19:14:45 +00:00
|
|
|
* Copies a rectangle of texels from src to dst. The size of dst is the size of the rectangle
|
|
|
|
* copied and topLeft is the position of the rect in src. The rectangle is clipped to src's
|
|
|
|
* bounds.
|
2011-12-02 19:11:17 +00:00
|
|
|
* @param src the texture to copy from.
|
|
|
|
* @param dst the render target to copy to.
|
2012-12-07 19:14:45 +00:00
|
|
|
* @param topLeft the point in src that will be copied to the top-left of dst. If NULL,
|
|
|
|
* (0, 0) will be used.
|
2011-12-02 19:11:17 +00:00
|
|
|
*/
|
2012-12-07 19:14:45 +00:00
|
|
|
void copyTexture(GrTexture* src, GrRenderTarget* dst, const SkIPoint* topLeft = NULL);
|
2012-01-31 13:35:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolves a render target that has MSAA. The intermediate MSAA buffer is
|
2012-10-15 14:25:31 +00:00
|
|
|
* down-sampled to the associated GrTexture (accessible via
|
2012-01-31 13:35:56 +00:00
|
|
|
* GrRenderTarget::asTexture()). Any pending draws to the render target will
|
|
|
|
* be executed before the resolve.
|
|
|
|
*
|
|
|
|
* This is only necessary when a client wants to access the object directly
|
2012-10-25 18:43:28 +00:00
|
|
|
* using the backend API directly. GrContext will detect when it must
|
2012-01-31 13:35:56 +00:00
|
|
|
* perform a resolve to a GrTexture used as the source of a draw or before
|
|
|
|
* reading pixels back from a GrTexture or GrRenderTarget.
|
|
|
|
*/
|
|
|
|
void resolveRenderTarget(GrRenderTarget* target);
|
|
|
|
|
2011-07-08 18:03:33 +00:00
|
|
|
/**
|
2012-03-05 20:41:22 +00:00
|
|
|
* Applies a 2D Gaussian blur to a given texture.
|
|
|
|
* @param srcTexture The source texture to be blurred.
|
2012-07-18 19:52:53 +00:00
|
|
|
* @param canClobberSrc If true, srcTexture may be overwritten, and
|
|
|
|
* may be returned as the result.
|
2012-03-05 20:41:22 +00:00
|
|
|
* @param rect The destination rectangle.
|
|
|
|
* @param sigmaX The blur's standard deviation in X.
|
|
|
|
* @param sigmaY The blur's standard deviation in Y.
|
2012-10-15 14:25:31 +00:00
|
|
|
* @return the blurred texture, which may be srcTexture reffed, or a
|
2012-07-18 19:52:53 +00:00
|
|
|
* new texture. It is the caller's responsibility to unref this texture.
|
2012-03-05 20:41:22 +00:00
|
|
|
*/
|
|
|
|
GrTexture* gaussianBlur(GrTexture* srcTexture,
|
2012-07-18 19:52:53 +00:00
|
|
|
bool canClobberSrc,
|
2012-03-05 20:41:22 +00:00
|
|
|
const SkRect& rect,
|
|
|
|
float sigmaX, float sigmaY);
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Helpers
|
|
|
|
|
2012-10-01 18:25:13 +00:00
|
|
|
class AutoRenderTarget : public ::GrNoncopyable {
|
2011-02-22 20:59:41 +00:00
|
|
|
public:
|
|
|
|
AutoRenderTarget(GrContext* context, GrRenderTarget* target) {
|
|
|
|
fPrevTarget = context->getRenderTarget();
|
2012-10-01 18:25:13 +00:00
|
|
|
GrSafeRef(fPrevTarget);
|
2012-08-27 12:53:13 +00:00
|
|
|
context->setRenderTarget(target);
|
|
|
|
fContext = context;
|
|
|
|
}
|
|
|
|
AutoRenderTarget(GrContext* context) {
|
|
|
|
fPrevTarget = context->getRenderTarget();
|
2012-10-01 18:25:13 +00:00
|
|
|
GrSafeRef(fPrevTarget);
|
2012-08-27 12:53:13 +00:00
|
|
|
fContext = context;
|
2011-02-22 20:59:41 +00:00
|
|
|
}
|
|
|
|
~AutoRenderTarget() {
|
2012-10-01 18:25:13 +00:00
|
|
|
if (NULL != fContext) {
|
2011-02-22 20:59:41 +00:00
|
|
|
fContext->setRenderTarget(fPrevTarget);
|
|
|
|
}
|
2012-10-01 18:25:13 +00:00
|
|
|
GrSafeUnref(fPrevTarget);
|
2011-02-22 20:59:41 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
GrContext* fContext;
|
|
|
|
GrRenderTarget* fPrevTarget;
|
|
|
|
};
|
|
|
|
|
2012-07-11 18:53:23 +00:00
|
|
|
/**
|
2012-10-12 14:51:52 +00:00
|
|
|
* Save/restore the view-matrix in the context. It can optionally adjust a paint to account
|
|
|
|
* for a coordinate system change. Here is an example of how the paint param can be used:
|
|
|
|
*
|
2012-10-24 19:07:10 +00:00
|
|
|
* A GrPaint is setup with GrEffects. The stages will have access to the pre-matrix source
|
2012-10-12 14:51:52 +00:00
|
|
|
* geometry positions when the draw is executed. Later on a decision is made to transform the
|
2012-10-24 19:07:10 +00:00
|
|
|
* geometry to device space on the CPU. The effects now need to know that the space in which
|
|
|
|
* the geometry will be specified has changed.
|
2012-10-12 14:51:52 +00:00
|
|
|
*
|
|
|
|
* Note that when restore is called (or in the destructor) the context's matrix will be
|
|
|
|
* restored. However, the paint will not be restored. The caller must make a copy of the
|
|
|
|
* paint if necessary. Hint: use SkTCopyOnFirstWrite if the AutoMatrix is conditionally
|
|
|
|
* initialized.
|
2012-07-11 18:53:23 +00:00
|
|
|
*/
|
|
|
|
class AutoMatrix : GrNoncopyable {
|
|
|
|
public:
|
|
|
|
AutoMatrix() : fContext(NULL) {}
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2012-10-12 14:51:52 +00:00
|
|
|
~AutoMatrix() { this->restore(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes by pre-concat'ing the context's current matrix with the preConcat param.
|
|
|
|
*/
|
2012-11-01 18:02:54 +00:00
|
|
|
void setPreConcat(GrContext* context, const SkMatrix& preConcat, GrPaint* paint = NULL) {
|
2012-10-12 14:51:52 +00:00
|
|
|
GrAssert(NULL != context);
|
|
|
|
|
|
|
|
this->restore();
|
2012-10-13 02:01:56 +00:00
|
|
|
|
2012-10-12 14:51:52 +00:00
|
|
|
fContext = context;
|
|
|
|
fMatrix = context->getMatrix();
|
|
|
|
this->preConcat(preConcat, paint);
|
2012-07-11 18:53:23 +00:00
|
|
|
}
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2012-10-12 14:51:52 +00:00
|
|
|
/**
|
|
|
|
* Sets the context's matrix to identity. Returns false if the inverse matrix is required to
|
|
|
|
* update a paint but the matrix cannot be inverted.
|
|
|
|
*/
|
|
|
|
bool setIdentity(GrContext* context, GrPaint* paint = NULL) {
|
|
|
|
GrAssert(NULL != context);
|
|
|
|
|
|
|
|
this->restore();
|
2012-10-13 02:01:56 +00:00
|
|
|
|
2012-10-12 14:51:52 +00:00
|
|
|
if (NULL != paint) {
|
2013-03-20 19:19:53 +00:00
|
|
|
if (!paint->localCoordChangeInverse(context->getMatrix())) {
|
2012-10-12 14:51:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fMatrix = context->getMatrix();
|
|
|
|
fContext = context;
|
|
|
|
context->setIdentityMatrix();
|
|
|
|
return true;
|
2012-07-11 18:53:23 +00:00
|
|
|
}
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2012-10-12 14:51:52 +00:00
|
|
|
/**
|
|
|
|
* Replaces the context's matrix with a new matrix. Returns false if the inverse matrix is
|
|
|
|
* required to update a paint but the matrix cannot be inverted.
|
|
|
|
*/
|
2012-11-01 18:02:54 +00:00
|
|
|
bool set(GrContext* context, const SkMatrix& newMatrix, GrPaint* paint = NULL) {
|
2012-10-12 14:51:52 +00:00
|
|
|
if (NULL != paint) {
|
|
|
|
if (!this->setIdentity(context, paint)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this->preConcat(newMatrix, paint);
|
|
|
|
} else {
|
|
|
|
this->restore();
|
|
|
|
fContext = context;
|
|
|
|
fMatrix = context->getMatrix();
|
|
|
|
context->setMatrix(newMatrix);
|
2012-07-11 18:53:23 +00:00
|
|
|
}
|
2012-10-12 14:51:52 +00:00
|
|
|
return true;
|
2012-07-11 18:53:23 +00:00
|
|
|
}
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2012-10-12 14:51:52 +00:00
|
|
|
/**
|
|
|
|
* If this has been initialized then the context's matrix will be further updated by
|
|
|
|
* pre-concat'ing the preConcat param. The matrix that will be restored remains unchanged.
|
|
|
|
* The paint is assumed to be relative to the context's matrix at the time this call is
|
|
|
|
* made, not the matrix at the time AutoMatrix was first initialized. In other words, this
|
|
|
|
* performs an incremental update of the paint.
|
|
|
|
*/
|
2012-11-01 18:02:54 +00:00
|
|
|
void preConcat(const SkMatrix& preConcat, GrPaint* paint = NULL) {
|
2012-10-12 14:51:52 +00:00
|
|
|
if (NULL != paint) {
|
2013-03-20 19:19:53 +00:00
|
|
|
paint->localCoordChange(preConcat);
|
2012-07-11 18:53:23 +00:00
|
|
|
}
|
2012-10-12 14:51:52 +00:00
|
|
|
fContext->concatMatrix(preConcat);
|
2012-07-11 18:53:23 +00:00
|
|
|
}
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2012-10-12 14:51:52 +00:00
|
|
|
/**
|
|
|
|
* Returns false if never initialized or the inverse matrix was required to update a paint
|
|
|
|
* but the matrix could not be inverted.
|
|
|
|
*/
|
|
|
|
bool succeeded() const { return NULL != fContext; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If this has been initialized then the context's original matrix is restored.
|
|
|
|
*/
|
|
|
|
void restore() {
|
2012-07-11 18:53:23 +00:00
|
|
|
if (NULL != fContext) {
|
|
|
|
fContext->setMatrix(fMatrix);
|
2012-10-12 14:51:52 +00:00
|
|
|
fContext = NULL;
|
2012-07-11 18:53:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
GrContext* fContext;
|
2012-11-01 18:02:54 +00:00
|
|
|
SkMatrix fMatrix;
|
2012-07-11 18:53:23 +00:00
|
|
|
};
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-07-11 20:57:46 +00:00
|
|
|
class AutoClip : GrNoncopyable {
|
|
|
|
public:
|
2012-08-27 12:53:13 +00:00
|
|
|
// This enum exists to require a caller of the constructor to acknowledge that the clip will
|
|
|
|
// initially be wide open. It also could be extended if there are other desirable initial
|
|
|
|
// clip states.
|
|
|
|
enum InitialClip {
|
|
|
|
kWideOpen_InitialClip,
|
|
|
|
};
|
|
|
|
|
2012-10-02 02:01:24 +00:00
|
|
|
AutoClip(GrContext* context, InitialClip initialState)
|
2012-10-01 18:25:13 +00:00
|
|
|
: fContext(context) {
|
2012-08-27 12:53:13 +00:00
|
|
|
GrAssert(kWideOpen_InitialClip == initialState);
|
|
|
|
fNewClipData.fClipStack = &fNewClipStack;
|
2012-10-01 18:25:13 +00:00
|
|
|
|
|
|
|
fOldClip = context->getClip();
|
2012-08-27 12:53:13 +00:00
|
|
|
context->setClip(&fNewClipData);
|
|
|
|
}
|
|
|
|
|
2012-08-23 18:09:54 +00:00
|
|
|
AutoClip(GrContext* context, const GrRect& newClipRect)
|
2012-07-11 20:57:46 +00:00
|
|
|
: fContext(context)
|
2012-07-26 18:52:16 +00:00
|
|
|
, fNewClipStack(newClipRect) {
|
|
|
|
fNewClipData.fClipStack = &fNewClipStack;
|
|
|
|
|
2012-07-11 20:57:46 +00:00
|
|
|
fOldClip = fContext->getClip();
|
2012-07-26 18:52:16 +00:00
|
|
|
fContext->setClip(&fNewClipData);
|
2012-07-11 20:57:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~AutoClip() {
|
|
|
|
if (NULL != fContext) {
|
|
|
|
fContext->setClip(fOldClip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private:
|
2012-07-26 18:52:16 +00:00
|
|
|
GrContext* fContext;
|
|
|
|
const GrClipData* fOldClip;
|
|
|
|
|
2012-07-31 19:15:58 +00:00
|
|
|
SkClipStack fNewClipStack;
|
2012-07-26 18:52:16 +00:00
|
|
|
GrClipData fNewClipData;
|
2012-07-11 20:57:46 +00:00
|
|
|
};
|
|
|
|
|
2012-08-27 12:53:13 +00:00
|
|
|
class AutoWideOpenIdentityDraw {
|
|
|
|
public:
|
|
|
|
AutoWideOpenIdentityDraw(GrContext* ctx, GrRenderTarget* rt)
|
|
|
|
: fAutoClip(ctx, AutoClip::kWideOpen_InitialClip)
|
2012-10-12 14:51:52 +00:00
|
|
|
, fAutoRT(ctx, rt) {
|
|
|
|
fAutoMatrix.setIdentity(ctx);
|
|
|
|
// should never fail with no paint param.
|
|
|
|
GrAssert(fAutoMatrix.succeeded());
|
2012-08-27 12:53:13 +00:00
|
|
|
}
|
2012-10-12 14:51:52 +00:00
|
|
|
|
2012-08-27 12:53:13 +00:00
|
|
|
private:
|
|
|
|
AutoClip fAutoClip;
|
|
|
|
AutoRenderTarget fAutoRT;
|
|
|
|
AutoMatrix fAutoMatrix;
|
|
|
|
};
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Functions intended for internal use only.
|
|
|
|
GrGpu* getGpu() { return fGpu; }
|
2011-08-23 20:54:07 +00:00
|
|
|
const GrGpu* getGpu() const { return fGpu; }
|
2011-02-22 20:59:41 +00:00
|
|
|
GrFontCache* getFontCache() { return fFontCache; }
|
2013-06-13 17:44:07 +00:00
|
|
|
GrDrawTarget* getTextTarget();
|
2011-02-22 20:59:41 +00:00
|
|
|
const GrIndexBuffer* getQuadIndexBuffer() const;
|
2012-06-06 18:21:18 +00:00
|
|
|
|
2011-08-08 17:01:14 +00:00
|
|
|
/**
|
2012-10-15 14:25:31 +00:00
|
|
|
* Stencil buffers add themselves to the cache using addStencilBuffer. findStencilBuffer is
|
|
|
|
* called to check the cache for a SB that matches an RT's criteria.
|
2011-08-08 17:01:14 +00:00
|
|
|
*/
|
2012-09-09 14:44:15 +00:00
|
|
|
void addStencilBuffer(GrStencilBuffer* sb);
|
|
|
|
GrStencilBuffer* findStencilBuffer(int width, int height, int sampleCnt);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2012-12-10 19:10:17 +00:00
|
|
|
GrPathRenderer* getPathRenderer(
|
|
|
|
const SkPath& path,
|
2012-12-17 21:16:45 +00:00
|
|
|
const SkStrokeRec& stroke,
|
2012-12-10 19:10:17 +00:00
|
|
|
const GrDrawTarget* target,
|
|
|
|
bool allowSW,
|
|
|
|
GrPathRendererChain::DrawType drawType = GrPathRendererChain::kColor_DrawType,
|
|
|
|
GrPathRendererChain::StencilSupport* stencilSupport = NULL);
|
2012-05-22 20:28:23 +00:00
|
|
|
|
2012-08-31 13:07:37 +00:00
|
|
|
#if GR_CACHE_STATS
|
2012-08-22 10:57:05 +00:00
|
|
|
void printCacheStats() const;
|
|
|
|
#endif
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
private:
|
2012-08-16 18:36:06 +00:00
|
|
|
// Used to indicate whether a draw should be performed immediately or queued in fDrawBuffer.
|
|
|
|
enum BufferedDraw {
|
|
|
|
kYes_BufferedDraw,
|
|
|
|
kNo_BufferedDraw,
|
2011-02-22 20:59:41 +00:00
|
|
|
};
|
2012-08-16 18:36:06 +00:00
|
|
|
BufferedDraw fLastDrawWasBuffered;
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2013-05-28 17:25:49 +00:00
|
|
|
GrGpu* fGpu;
|
|
|
|
SkMatrix fViewMatrix;
|
|
|
|
SkAutoTUnref<GrRenderTarget> fRenderTarget;
|
|
|
|
const GrClipData* fClip; // TODO: make this ref counted
|
|
|
|
GrDrawState* fDrawState;
|
2012-03-30 14:35:04 +00:00
|
|
|
|
2013-05-28 17:25:49 +00:00
|
|
|
GrResourceCache* fTextureCache;
|
|
|
|
GrFontCache* fFontCache;
|
2011-03-25 12:31:16 +00:00
|
|
|
|
2013-05-28 17:25:49 +00:00
|
|
|
GrPathRendererChain* fPathRendererChain;
|
|
|
|
GrSoftwarePathRenderer* fSoftwarePathRenderer;
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2013-05-28 17:25:49 +00:00
|
|
|
GrVertexBufferAllocPool* fDrawBufferVBAllocPool;
|
|
|
|
GrIndexBufferAllocPool* fDrawBufferIBAllocPool;
|
|
|
|
GrInOrderDrawBuffer* fDrawBuffer;
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2013-05-28 17:25:49 +00:00
|
|
|
GrAARectRenderer* fAARectRenderer;
|
|
|
|
GrOvalRenderer* fOvalRenderer;
|
2011-03-25 12:31:16 +00:00
|
|
|
|
2013-05-28 17:25:49 +00:00
|
|
|
bool fDidTestPMConversions;
|
|
|
|
int fPMToUPMConversion;
|
|
|
|
int fUPMToPMConversion;
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2012-09-24 19:33:59 +00:00
|
|
|
struct CleanUpData {
|
|
|
|
PFCleanUpFunc fFunc;
|
|
|
|
void* fInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
SkTDArray<CleanUpData> fCleanUpData;
|
|
|
|
|
2013-02-25 20:12:45 +00:00
|
|
|
GrContext(); // init must be called after the constructor.
|
|
|
|
bool init(GrBackend, GrBackendContext);
|
2011-04-25 12:43:45 +00:00
|
|
|
|
2011-03-30 21:26:44 +00:00
|
|
|
void setupDrawBuffer();
|
|
|
|
|
2013-06-13 19:34:18 +00:00
|
|
|
class AutoRestoreEffects;
|
2012-08-17 14:06:49 +00:00
|
|
|
/// Sets the paint and returns the target to draw into. The paint can be NULL in which case the
|
|
|
|
/// draw state is left unmodified.
|
2013-06-13 19:34:18 +00:00
|
|
|
GrDrawTarget* prepareToDraw(const GrPaint*, BufferedDraw, AutoRestoreEffects*);
|
2011-02-22 20:59:41 +00:00
|
|
|
|
2013-05-02 13:11:22 +00:00
|
|
|
void internalDrawPath(GrDrawTarget* target, bool useAA, const SkPath& path,
|
2013-03-22 18:34:09 +00:00
|
|
|
const SkStrokeRec& stroke);
|
2013-01-22 13:34:01 +00:00
|
|
|
|
2012-08-13 18:00:36 +00:00
|
|
|
GrTexture* createResizedTexture(const GrTextureDesc& desc,
|
2012-12-20 15:13:01 +00:00
|
|
|
const GrCacheID& cacheID,
|
2012-08-13 18:00:36 +00:00
|
|
|
void* srcData,
|
|
|
|
size_t rowBytes,
|
|
|
|
bool needsFiltering);
|
|
|
|
|
2012-06-22 12:41:43 +00:00
|
|
|
// Needed so GrTexture's returnToCache helper function can call
|
|
|
|
// addExistingTextureToCache
|
|
|
|
friend class GrTexture;
|
|
|
|
|
|
|
|
// Add an existing texture to the texture cache. This is intended solely
|
|
|
|
// for use with textures released from an GrAutoScratchTexture.
|
|
|
|
void addExistingTextureToCache(GrTexture* texture);
|
2012-06-26 20:16:17 +00:00
|
|
|
|
2013-01-29 07:05:52 +00:00
|
|
|
/**
|
2013-01-28 14:26:09 +00:00
|
|
|
* These functions create premul <-> unpremul effects if it is possible to generate a pair
|
|
|
|
* of effects that make a readToUPM->writeToPM->readToUPM cycle invariant. Otherwise, they
|
|
|
|
* return NULL.
|
|
|
|
*/
|
|
|
|
const GrEffectRef* createPMToUPMEffect(GrTexture* texture,
|
|
|
|
bool swapRAndB,
|
|
|
|
const SkMatrix& matrix);
|
|
|
|
const GrEffectRef* createUPMToPMEffect(GrTexture* texture,
|
|
|
|
bool swapRAndB,
|
|
|
|
const SkMatrix& matrix);
|
2012-08-27 12:53:13 +00:00
|
|
|
|
2013-07-10 10:14:35 +00:00
|
|
|
/**
|
|
|
|
* This callback allows the resource cache to callback into the GrContext
|
|
|
|
* when the cache is still overbudget after a purge.
|
|
|
|
*/
|
|
|
|
static bool OverbudgetCB(void* data);
|
|
|
|
|
2012-06-26 20:16:17 +00:00
|
|
|
typedef GrRefCnt INHERITED;
|
2011-02-22 20:59:41 +00:00
|
|
|
};
|
|
|
|
|
2011-07-12 19:44:51 +00:00
|
|
|
/**
|
2012-10-15 14:25:31 +00:00
|
|
|
* Gets and locks a scratch texture from a descriptor using either exact or approximate criteria.
|
|
|
|
* Unlocks texture in the destructor.
|
2011-07-12 19:44:51 +00:00
|
|
|
*/
|
2011-07-26 20:45:30 +00:00
|
|
|
class GrAutoScratchTexture : ::GrNoncopyable {
|
2011-07-12 19:44:51 +00:00
|
|
|
public:
|
2011-07-26 20:45:30 +00:00
|
|
|
GrAutoScratchTexture()
|
2012-08-16 14:49:16 +00:00
|
|
|
: fContext(NULL)
|
|
|
|
, fTexture(NULL) {
|
2011-07-12 19:44:51 +00:00
|
|
|
}
|
2011-07-26 20:45:30 +00:00
|
|
|
|
|
|
|
GrAutoScratchTexture(GrContext* context,
|
|
|
|
const GrTextureDesc& desc,
|
2012-12-20 15:13:01 +00:00
|
|
|
GrContext::ScratchTexMatch match = GrContext::kApprox_ScratchTexMatch)
|
2012-08-16 14:49:16 +00:00
|
|
|
: fContext(NULL)
|
|
|
|
, fTexture(NULL) {
|
2011-07-26 20:45:30 +00:00
|
|
|
this->set(context, desc, match);
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2011-07-26 20:45:30 +00:00
|
|
|
~GrAutoScratchTexture() {
|
2012-06-22 12:01:30 +00:00
|
|
|
this->reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset() {
|
2012-08-16 14:49:16 +00:00
|
|
|
if (NULL != fContext && NULL != fTexture) {
|
2012-09-09 14:44:15 +00:00
|
|
|
fContext->unlockScratchTexture(fTexture);
|
2013-01-24 14:46:47 +00:00
|
|
|
fTexture->unref();
|
2012-08-16 14:49:16 +00:00
|
|
|
fTexture = NULL;
|
2011-07-12 19:44:51 +00:00
|
|
|
}
|
|
|
|
}
|
2011-07-14 14:45:44 +00:00
|
|
|
|
2012-06-22 12:41:43 +00:00
|
|
|
/*
|
|
|
|
* When detaching a texture we do not unlock it in the texture cache but
|
2012-08-23 18:09:54 +00:00
|
|
|
* we do set the returnToCache flag. In this way the texture remains
|
|
|
|
* "locked" in the texture cache until it is freed and recycled in
|
|
|
|
* GrTexture::internal_dispose. In reality, the texture has been removed
|
|
|
|
* from the cache (because this is in AutoScratchTexture) and by not
|
2013-01-24 14:46:47 +00:00
|
|
|
* calling unlockScratchTexture we simply don't re-add it. It will be
|
|
|
|
* reattached in GrTexture::internal_dispose.
|
2012-06-22 12:41:43 +00:00
|
|
|
*
|
|
|
|
* Note that the caller is assumed to accept and manage the ref to the
|
|
|
|
* returned texture.
|
|
|
|
*/
|
|
|
|
GrTexture* detach() {
|
2013-05-11 13:21:43 +00:00
|
|
|
if (NULL == fTexture) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-01-24 14:46:47 +00:00
|
|
|
GrTexture* texture = fTexture;
|
2012-08-16 14:49:16 +00:00
|
|
|
fTexture = NULL;
|
2012-06-22 12:41:43 +00:00
|
|
|
|
2013-01-24 14:46:47 +00:00
|
|
|
// This GrAutoScratchTexture has a ref from lockAndRefScratchTexture, which we give up now.
|
|
|
|
// The cache also has a ref which we are lending to the caller of detach(). When the caller
|
|
|
|
// lets go of the ref and the ref count goes to 0 internal_dispose will see this flag is
|
|
|
|
// set and re-ref the texture, thereby restoring the cache's ref.
|
|
|
|
GrAssert(texture->getRefCnt() > 1);
|
|
|
|
texture->setFlag((GrTextureFlags) GrTexture::kReturnToCache_FlagBit);
|
|
|
|
texture->unref();
|
|
|
|
GrAssert(NULL != texture->getCacheEntry());
|
|
|
|
|
|
|
|
return texture;
|
2012-06-22 12:41:43 +00:00
|
|
|
}
|
|
|
|
|
2011-07-26 20:45:30 +00:00
|
|
|
GrTexture* set(GrContext* context,
|
|
|
|
const GrTextureDesc& desc,
|
2012-12-20 15:13:01 +00:00
|
|
|
GrContext::ScratchTexMatch match = GrContext::kApprox_ScratchTexMatch) {
|
2012-06-22 12:01:30 +00:00
|
|
|
this->reset();
|
|
|
|
|
2011-07-26 20:45:30 +00:00
|
|
|
fContext = context;
|
|
|
|
if (NULL != fContext) {
|
2013-01-24 14:46:47 +00:00
|
|
|
fTexture = fContext->lockAndRefScratchTexture(desc, match);
|
2012-08-16 14:49:16 +00:00
|
|
|
if (NULL == fTexture) {
|
2011-07-26 20:45:30 +00:00
|
|
|
fContext = NULL;
|
|
|
|
}
|
2012-08-16 14:49:16 +00:00
|
|
|
return fTexture;
|
2011-07-26 20:45:30 +00:00
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-16 14:49:16 +00:00
|
|
|
GrTexture* texture() { return fTexture; }
|
|
|
|
|
2011-07-12 19:44:51 +00:00
|
|
|
private:
|
2011-07-26 20:45:30 +00:00
|
|
|
GrContext* fContext;
|
2012-08-16 14:49:16 +00:00
|
|
|
GrTexture* fTexture;
|
2011-07-12 19:44:51 +00:00
|
|
|
};
|
|
|
|
|
2011-02-22 20:59:41 +00:00
|
|
|
#endif
|