| epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2 | /* |
| epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 10 | #ifndef GrGpu_DEFINED |
| 11 | #define GrGpu_DEFINED |
| 12 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 13 | #include "GrDrawTarget.h" |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 14 | #include "GrRect.h" |
| 15 | #include "GrRefCnt.h" |
| robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 16 | #include "GrClipMaskManager.h" |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 17 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 18 | class GrContext; |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 19 | class GrIndexBufferAllocPool; |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 20 | class GrPath; |
| bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 21 | class GrPathRenderer; |
| 22 | class GrPathRendererChain; |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 23 | class GrResource; |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 24 | class GrStencilBuffer; |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 25 | class GrVertexBufferAllocPool; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 26 | |
| 27 | class GrGpu : public GrDrawTarget { |
| 28 | |
| 29 | public: |
| bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 30 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 31 | /** |
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 32 | * Additional blend coeffecients for dual source blending, not exposed |
| 33 | * through GrPaint/GrContext. |
| 34 | */ |
| 35 | enum ExtendedBlendCoeffs { |
| 36 | // source 2 refers to second output color when |
| 37 | // using dual source blending. |
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 38 | kS2C_GrBlendCoeff = kPublicGrBlendCoeffCount, |
| 39 | kIS2C_GrBlendCoeff, |
| 40 | kS2A_GrBlendCoeff, |
| 41 | kIS2A_GrBlendCoeff, |
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 42 | |
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 43 | kTotalGrBlendCoeffCount |
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | /** |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 47 | * Create an instance of GrGpu that matches the specified Engine backend. |
| 48 | * If the requested engine is not supported (at compile-time or run-time) |
| 49 | * this returns NULL. |
| 50 | */ |
| bsalomon@google.com | 05ef510 | 2011-05-02 21:14:59 +0000 | [diff] [blame] | 51 | static GrGpu* Create(GrEngine, GrPlatform3DContext context3D); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 52 | |
| 53 | //////////////////////////////////////////////////////////////////////////// |
| 54 | |
| 55 | GrGpu(); |
| 56 | virtual ~GrGpu(); |
| 57 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 58 | // The GrContext sets itself as the owner of this Gpu object |
| 59 | void setContext(GrContext* context) { |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 60 | GrAssert(NULL == fContext); |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 61 | fContext = context; |
| robertphillips@google.com | f105b10 | 2012-05-14 12:18:26 +0000 | [diff] [blame] | 62 | fClipMaskManager.setContext(context); |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 63 | } |
| 64 | GrContext* getContext() { return fContext; } |
| 65 | const GrContext* getContext() const { return fContext; } |
| 66 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 67 | /** |
| 68 | * The GrGpu object normally assumes that no outsider is setting state |
| 69 | * within the underlying 3D API's context/device/whatever. This call informs |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 70 | * the GrGpu that the state was modified and it shouldn't make assumptions |
| 71 | * about the state. |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 72 | */ |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 73 | void markContextDirty() { fContextIsDirty = true; } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 74 | |
| 75 | void unimpl(const char[]); |
| 76 | |
| 77 | /** |
| bsalomon@google.com | 0748f21 | 2011-02-01 22:56:16 +0000 | [diff] [blame] | 78 | * Creates a texture object. If desc width or height is not a power of |
| 79 | * two but underlying API requires a power of two texture then srcData |
| 80 | * will be embedded in a power of two texture. The extra width and height |
| 81 | * is filled as though srcData were rendered clamped into the texture. |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 82 | * |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 83 | * If kRenderTarget_TextureFlag is specified the GrRenderTarget is |
| bsalomon@google.com | 1da0746 | 2011-03-10 14:51:57 +0000 | [diff] [blame] | 84 | * accessible via GrTexture::asRenderTarget(). The texture will hold a ref |
| 85 | * on the render target until its releaseRenderTarget() is called or it is |
| 86 | * destroyed. |
| 87 | * |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 88 | * @param desc describes the texture to be created. |
| 89 | * @param srcData texel data to load texture. Begins with full-size |
| 90 | * palette data for paletted textures. Contains width* |
| 91 | * height texels. If NULL texture data is uninitialized. |
| 92 | * |
| 93 | * @return The texture object if successful, otherwise NULL. |
| 94 | */ |
| bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 95 | GrTexture* createTexture(const GrTextureDesc& desc, |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 96 | const void* srcData, size_t rowBytes); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 97 | |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 98 | /** |
| 99 | * Implements GrContext::createPlatformTexture |
| 100 | */ |
| 101 | GrTexture* createPlatformTexture(const GrPlatformTextureDesc& desc); |
| 102 | |
| 103 | /** |
| 104 | * Implements GrContext::createPlatformTexture |
| 105 | */ |
| 106 | GrRenderTarget* createPlatformRenderTarget(const GrPlatformRenderTargetDesc& desc); |
| 107 | |
| 108 | /** |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 109 | * Creates a vertex buffer. |
| 110 | * |
| 111 | * @param size size in bytes of the vertex buffer |
| 112 | * @param dynamic hints whether the data will be frequently changed |
| 113 | * by either GrVertexBuffer::lock or |
| 114 | * GrVertexBuffer::updateData. |
| 115 | * |
| 116 | * @return The vertex buffer if successful, otherwise NULL. |
| 117 | */ |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 118 | GrVertexBuffer* createVertexBuffer(uint32_t size, bool dynamic); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 119 | |
| 120 | /** |
| 121 | * Creates an index buffer. |
| 122 | * |
| 123 | * @param size size in bytes of the index buffer |
| 124 | * @param dynamic hints whether the data will be frequently changed |
| 125 | * by either GrIndexBuffer::lock or |
| 126 | * GrIndexBuffer::updateData. |
| 127 | * |
| 128 | * @return The index buffer if successful, otherwise NULL. |
| 129 | */ |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 130 | GrIndexBuffer* createIndexBuffer(uint32_t size, bool dynamic); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 131 | |
| 132 | /** |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 133 | * Creates a path object that can be stenciled using stencilPath(). It is |
| 134 | * only legal to call this if the caps report support for path stenciling. |
| 135 | */ |
| 136 | GrPath* createPath(const SkPath& path); |
| 137 | |
| 138 | /** |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 139 | * Returns an index buffer that can be used to render quads. |
| bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 140 | * Six indices per quad: 0, 1, 2, 0, 2, 3, etc. |
| 141 | * The max number of quads can be queried using GrIndexBuffer::maxQuads(). |
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 142 | * Draw with kTriangles_GrPrimitiveType |
| bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 143 | * @ return the quad index buffer |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 144 | */ |
| bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 145 | const GrIndexBuffer* getQuadIndexBuffer() const; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 146 | |
| 147 | /** |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 148 | * Returns a vertex buffer with four position-only vertices [(0,0), (1,0), |
| bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 149 | * (1,1), (0,1)]. |
| 150 | * @ return unit square vertex buffer |
| bsalomon@google.com | 6f7fbc9 | 2011-02-01 19:12:40 +0000 | [diff] [blame] | 151 | */ |
| bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 152 | const GrVertexBuffer* getUnitSquareVertexBuffer() const; |
| bsalomon@google.com | 6f7fbc9 | 2011-02-01 19:12:40 +0000 | [diff] [blame] | 153 | |
| 154 | /** |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 155 | * Resolves MSAA. |
| 156 | */ |
| 157 | void resolveRenderTarget(GrRenderTarget* target); |
| 158 | |
| 159 | /** |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 160 | * Ensures that the current render target is actually set in the |
| 161 | * underlying 3D API. Used when client wants to use 3D API to directly |
| 162 | * render to the RT. |
| 163 | */ |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 164 | void forceRenderTargetFlush(); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 165 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 166 | /** |
| bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 167 | * readPixels with some configs may be slow. Given a desired config this |
| 168 | * function returns a fast-path config. The returned config must have the |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame^] | 169 | * same components and component sizes. The caller is free to ignore the |
| 170 | * result and call readPixels with the original config. |
| bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 171 | */ |
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 172 | virtual GrPixelConfig preferredReadPixelsConfig(GrPixelConfig config) |
| 173 | const { |
| bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 174 | return config; |
| 175 | } |
| 176 | |
| 177 | /** |
| bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 178 | * Same as above but applies to writeTexturePixels |
| 179 | */ |
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 180 | virtual GrPixelConfig preferredWritePixelsConfig(GrPixelConfig config) |
| 181 | const { |
| bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 182 | return config; |
| 183 | } |
| 184 | |
| 185 | /** |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 186 | * OpenGL's readPixels returns the result bottom-to-top while the skia |
| 187 | * API is top-to-bottom. Thus we have to do a y-axis flip. The obvious |
| 188 | * solution is to have the subclass do the flip using either the CPU or GPU. |
| 189 | * However, the caller (GrContext) may have transformations to apply and can |
| 190 | * simply fold in the y-flip for free. On the other hand, the subclass may |
| 191 | * be able to do it for free itself. For example, the subclass may have to |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 192 | * do memcpys to handle rowBytes that aren't tight. It could do the y-flip |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 193 | * concurrently. |
| 194 | * |
| 195 | * This function returns true if a y-flip is required to put the pixels in |
| 196 | * top-to-bottom order and the subclass cannot do it for free. |
| 197 | * |
| 198 | * See read pixels for the params |
| 199 | * @return true if calling readPixels with the same set of params will |
| 200 | * produce bottom-to-top data |
| 201 | */ |
| 202 | virtual bool readPixelsWillPayForYFlip(GrRenderTarget* renderTarget, |
| 203 | int left, int top, |
| 204 | int width, int height, |
| 205 | GrPixelConfig config, |
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 206 | size_t rowBytes) const = 0; |
| 207 | /** |
| 208 | * This should return true if reading a NxM rectangle of pixels from a |
| 209 | * render target is faster if the target has dimensons N and M and the read |
| 210 | * rectangle has its top-left at 0,0. |
| 211 | */ |
| 212 | virtual bool fullReadPixelsIsFasterThanPartial() const { return false; }; |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 213 | |
| 214 | /** |
| bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame^] | 215 | * Reads a rectangle of pixels from a render target. |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 216 | * |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 217 | * @param renderTarget the render target to read from. NULL means the |
| 218 | * current render target. |
| 219 | * @param left left edge of the rectangle to read (inclusive) |
| 220 | * @param top top edge of the rectangle to read (inclusive) |
| 221 | * @param width width of rectangle to read in pixels. |
| 222 | * @param height height of rectangle to read in pixels. |
| 223 | * @param config the pixel config of the destination buffer |
| 224 | * @param buffer memory to read the rectangle into. |
| bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 225 | * @param rowBytes the number of bytes between consecutive rows. Zero |
| 226 | * means rows are tightly packed. |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 227 | * @param invertY buffer should be populated bottom-to-top as opposed |
| 228 | * to top-to-bottom (skia's usual order) |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 229 | * |
| 230 | * @return true if the read succeeded, false if not. The read can fail |
| 231 | * because of a unsupported pixel config or because no render |
| 232 | * target is currently set. |
| 233 | */ |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 234 | bool readPixels(GrRenderTarget* renderTarget, |
| 235 | int left, int top, int width, int height, |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 236 | GrPixelConfig config, void* buffer, size_t rowBytes, |
| 237 | bool invertY); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 238 | |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 239 | /** |
| 240 | * Updates the pixels in a rectangle of a texture. |
| bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 241 | * |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 242 | * @param left left edge of the rectangle to write (inclusive) |
| 243 | * @param top top edge of the rectangle to write (inclusive) |
| 244 | * @param width width of rectangle to write in pixels. |
| 245 | * @param height height of rectangle to write in pixels. |
| 246 | * @param config the pixel config of the source buffer |
| 247 | * @param buffer memory to read pixels from |
| 248 | * @param rowBytes number of bytes bewtween consecutive rows. Zero |
| 249 | * means rows are tightly packed. |
| 250 | */ |
| 251 | void writeTexturePixels(GrTexture* texture, |
| 252 | int left, int top, int width, int height, |
| 253 | GrPixelConfig config, const void* buffer, |
| 254 | size_t rowBytes); |
| 255 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 256 | /** |
| 257 | * Called to tell Gpu object that all GrResources have been lost and should |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 258 | * be abandoned. Overrides must call INHERITED::abandonResources(). |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 259 | */ |
| junov@google.com | 53a5584 | 2011-06-08 22:55:10 +0000 | [diff] [blame] | 260 | virtual void abandonResources(); |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 261 | |
| 262 | /** |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 263 | * Called to tell Gpu object to release all GrResources. Overrides must call |
| 264 | * INHERITED::releaseResources(). |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 265 | */ |
| 266 | void releaseResources(); |
| 267 | |
| 268 | /** |
| 269 | * Add resource to list of resources. Should only be called by GrResource. |
| 270 | * @param resource the resource to add. |
| 271 | */ |
| 272 | void insertResource(GrResource* resource); |
| 273 | |
| 274 | /** |
| 275 | * Remove resource from list of resources. Should only be called by |
| 276 | * GrResource. |
| 277 | * @param resource the resource to remove. |
| 278 | */ |
| 279 | void removeResource(GrResource* resource); |
| 280 | |
| bsalomon@google.com | 471d471 | 2011-08-23 15:45:25 +0000 | [diff] [blame] | 281 | // GrDrawTarget overrides |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 282 | virtual void clear(const GrIRect* rect, |
| robertphillips@google.com | c82a8b7 | 2012-06-21 20:15:48 +0000 | [diff] [blame] | 283 | GrColor color, |
| 284 | GrRenderTarget* renderTarget = NULL) SK_OVERRIDE; |
| bsalomon@google.com | 471d471 | 2011-08-23 15:45:25 +0000 | [diff] [blame] | 285 | |
| robertphillips@google.com | ff17584 | 2012-05-14 19:31:39 +0000 | [diff] [blame] | 286 | virtual void purgeResources() SK_OVERRIDE { |
| 287 | // The clip mask manager can rebuild all its clip masks so just |
| 288 | // get rid of them all. |
| 289 | fClipMaskManager.releaseResources(); |
| 290 | } |
| 291 | |
| bsalomon@google.com | 80d09b9 | 2011-11-05 21:21:13 +0000 | [diff] [blame] | 292 | // After the client interacts directly with the 3D context state the GrGpu |
| 293 | // must resync its internal state and assumptions about 3D context state. |
| 294 | // Each time this occurs the GrGpu bumps a timestamp. |
| 295 | // state of the 3D context |
| 296 | // At 10 resets / frame and 60fps a 64bit timestamp will overflow in about |
| 297 | // a billion years. |
| 298 | typedef uint64_t ResetTimestamp; |
| 299 | |
| 300 | // This timestamp is always older than the current timestamp |
| 301 | static const ResetTimestamp kExpiredTimestamp = 0; |
| 302 | // Returns a timestamp based on the number of times the context was reset. |
| 303 | // This timestamp can be used to lazily detect when cached 3D context state |
| 304 | // is dirty. |
| 305 | ResetTimestamp getResetTimestamp() const { |
| 306 | return fResetTimestamp; |
| 307 | } |
| 308 | |
| robertphillips@google.com | 99a5ac0 | 2012-04-10 19:26:38 +0000 | [diff] [blame] | 309 | /** |
| 310 | * Can the provided configuration act as a color render target? |
| 311 | */ |
| 312 | bool isConfigRenderable(GrPixelConfig config) const { |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 313 | GrAssert(kGrPixelConfigCount > config); |
| robertphillips@google.com | 99a5ac0 | 2012-04-10 19:26:38 +0000 | [diff] [blame] | 314 | return fConfigRenderSupport[config]; |
| 315 | } |
| 316 | |
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 317 | /** |
| 318 | * These methods are called by the clip manager's setupClipping function |
| 319 | * which (called as part of GrGpu's implementation of onDraw* and |
| 320 | * onStencilPath member functions.) The GrGpu subclass should flush the |
| 321 | * stencil state to the 3D API in its implementation of flushGraphicsState. |
| 322 | */ |
| 323 | void enableScissor(const GrIRect& rect) { |
| 324 | fScissorState.fEnabled = true; |
| 325 | fScissorState.fRect = rect; |
| 326 | } |
| 327 | void disableScissor() { fScissorState.fEnabled = false; } |
| 328 | |
| 329 | /** |
| 330 | * Like the scissor methods above this is called by setupClipping and |
| 331 | * should be flushed by the GrGpu subclass in flushGraphicsState. These |
| 332 | * stencil settings should be used in place of those on the GrDrawState. |
| 333 | * They have been adjusted to account for any interactions between the |
| 334 | * GrDrawState's stencil settings and stencil clipping. |
| 335 | */ |
| 336 | void setStencilSettings(const GrStencilSettings& settings) { |
| 337 | fStencilSettings = settings; |
| 338 | } |
| 339 | void disableStencil() { fStencilSettings.setDisabled(); } |
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 340 | |
| 341 | // GrGpu subclass sets clip bit in the stencil buffer. The subclass is |
| 342 | // free to clear the remaining bits to zero if masked clears are more |
| 343 | // expensive than clearing all bits. |
| 344 | virtual void clearStencilClip(const GrIRect& rect, bool insideClip) = 0; |
| 345 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 346 | enum PrivateDrawStateStateBits { |
| 347 | kFirstBit = (GrDrawState::kLastPublicStateBit << 1), |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 348 | |
| 349 | kModifyStencilClip_StateBit = kFirstBit, // allows draws to modify |
| 350 | // stencil bits used for |
| 351 | // clipping. |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 352 | }; |
| 353 | |
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 354 | protected: |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 355 | enum DrawType { |
| 356 | kDrawPoints_DrawType, |
| 357 | kDrawLines_DrawType, |
| 358 | kDrawTriangles_DrawType, |
| 359 | kStencilPath_DrawType, |
| 360 | }; |
| 361 | |
| 362 | DrawType PrimTypeToDrawType(GrPrimitiveType type) { |
| 363 | switch (type) { |
| 364 | case kTriangles_GrPrimitiveType: |
| 365 | case kTriangleStrip_GrPrimitiveType: |
| 366 | case kTriangleFan_GrPrimitiveType: |
| 367 | return kDrawTriangles_DrawType; |
| 368 | case kPoints_GrPrimitiveType: |
| 369 | return kDrawPoints_DrawType; |
| 370 | case kLines_GrPrimitiveType: |
| 371 | case kLineStrip_GrPrimitiveType: |
| 372 | return kDrawLines_DrawType; |
| 373 | default: |
| 374 | GrCrash("Unexpected primitive type"); |
| 375 | return kDrawTriangles_DrawType; |
| 376 | } |
| 377 | } |
| 378 | |
| bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 379 | // prepares clip flushes gpu state before a draw |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 380 | bool setupClipAndFlushState(DrawType); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 381 | |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 382 | // Functions used to map clip-respecting stencil tests into normal |
| 383 | // stencil funcs supported by GPUs. |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 384 | static GrStencilFunc ConvertStencilFunc(bool stencilInClip, |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 385 | GrStencilFunc func); |
| 386 | static void ConvertStencilFuncAndMask(GrStencilFunc func, |
| 387 | bool clipInStencil, |
| 388 | unsigned int clipBit, |
| 389 | unsigned int userBits, |
| 390 | unsigned int* ref, |
| 391 | unsigned int* mask); |
| 392 | |
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 393 | GrClipMaskManager fClipMaskManager; |
| 394 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 395 | struct GeometryPoolState { |
| 396 | const GrVertexBuffer* fPoolVertexBuffer; |
| 397 | int fPoolStartVertex; |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 398 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 399 | const GrIndexBuffer* fPoolIndexBuffer; |
| 400 | int fPoolStartIndex; |
| 401 | }; |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 402 | const GeometryPoolState& getGeomPoolState() { |
| 403 | return fGeomPoolStateStack.back(); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 404 | } |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 405 | |
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 406 | // The state of the scissor is controlled by the clip manager |
| 407 | struct ScissorState { |
| 408 | bool fEnabled; |
| 409 | GrIRect fRect; |
| 410 | } fScissorState; |
| 411 | |
| 412 | // The final stencil settings to use as determined by the clip manager. |
| 413 | GrStencilSettings fStencilSettings; |
| 414 | |
| robertphillips@google.com | 99a5ac0 | 2012-04-10 19:26:38 +0000 | [diff] [blame] | 415 | // Derived classes need access to this so they can fill it out in their |
| 416 | // constructors |
| 417 | bool fConfigRenderSupport[kGrPixelConfigCount]; |
| 418 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 419 | // GrDrawTarget overrides |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 420 | virtual bool onReserveVertexSpace(GrVertexLayout vertexLayout, |
| 421 | int vertexCount, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 422 | void** vertices) SK_OVERRIDE; |
| 423 | virtual bool onReserveIndexSpace(int indexCount, |
| 424 | void** indices) SK_OVERRIDE; |
| 425 | virtual void releaseReservedVertexSpace() SK_OVERRIDE; |
| 426 | virtual void releaseReservedIndexSpace() SK_OVERRIDE; |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 427 | virtual void onSetVertexSourceToArray(const void* vertexArray, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 428 | int vertexCount) SK_OVERRIDE; |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 429 | virtual void onSetIndexSourceToArray(const void* indexArray, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 430 | int indexCount) SK_OVERRIDE; |
| 431 | virtual void releaseVertexArray() SK_OVERRIDE; |
| 432 | virtual void releaseIndexArray() SK_OVERRIDE; |
| 433 | virtual void geometrySourceWillPush() SK_OVERRIDE; |
| 434 | virtual void geometrySourceWillPop( |
| 435 | const GeometrySrcState& restoredState) SK_OVERRIDE; |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 436 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 437 | // Helpers for setting up geometry state |
| 438 | void finalizeReservedVertices(); |
| 439 | void finalizeReservedIndices(); |
| 440 | |
| bsalomon@google.com | b635d39 | 2011-11-05 12:47:43 +0000 | [diff] [blame] | 441 | // called when the 3D context state is unknown. Subclass should emit any |
| bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 442 | // assumed 3D context state and dirty any state cache. |
| bsalomon@google.com | 1bf1c21 | 2011-11-05 12:18:58 +0000 | [diff] [blame] | 443 | virtual void onResetContext() = 0; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 444 | |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 445 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 446 | // overridden by API-specific derived class to create objects. |
| bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 447 | virtual GrTexture* onCreateTexture(const GrTextureDesc& desc, |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 448 | const void* srcData, |
| 449 | size_t rowBytes) = 0; |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 450 | virtual GrTexture* onCreatePlatformTexture(const GrPlatformTextureDesc& desc) = 0; |
| 451 | virtual GrRenderTarget* onCreatePlatformRenderTarget(const GrPlatformRenderTargetDesc& desc) = 0; |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 452 | virtual GrVertexBuffer* onCreateVertexBuffer(uint32_t size, |
| 453 | bool dynamic) = 0; |
| 454 | virtual GrIndexBuffer* onCreateIndexBuffer(uint32_t size, |
| 455 | bool dynamic) = 0; |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 456 | virtual GrPath* onCreatePath(const SkPath& path) = 0; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 457 | |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 458 | // overridden by API-specific derivated class to perform the clear and |
| bsalomon@google.com | 6aa25c3 | 2011-04-27 19:55:29 +0000 | [diff] [blame] | 459 | // clearRect. NULL rect means clear whole target. |
| 460 | virtual void onClear(const GrIRect* rect, GrColor color) = 0; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 461 | |
| 462 | // overridden by API-specific derived class to perform the draw call. |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 463 | virtual void onGpuDrawIndexed(GrPrimitiveType type, |
| 464 | uint32_t startVertex, |
| 465 | uint32_t startIndex, |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 466 | uint32_t vertexCount, |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 467 | uint32_t indexCount) = 0; |
| 468 | |
| 469 | virtual void onGpuDrawNonIndexed(GrPrimitiveType type, |
| 470 | uint32_t vertexCount, |
| 471 | uint32_t numVertices) = 0; |
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 472 | // when GrDrawTarget::stencilPath is called the draw state's current stencil |
| 473 | // settings are ignored. Instead the GrGpu decides the stencil rules |
| 474 | // necessary to stencil the path. These are still subject to filtering by |
| 475 | // the clip mask manager. |
| 476 | virtual void setStencilPathSettings(const GrPath&, |
| 477 | GrPathFill, |
| 478 | GrStencilSettings* settings) = 0; |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 479 | // overridden by API-specific derived class to perform the path stenciling. |
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 480 | virtual void onGpuStencilPath(const GrPath*, GrPathFill) = 0; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 481 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 482 | // overridden by API-specific derived class to perform flush |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 483 | virtual void onForceRenderTargetFlush() = 0; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 484 | |
| 485 | // overridden by API-specific derived class to perform the read pixels. |
| bsalomon@google.com | 5877ffd | 2011-04-11 17:58:48 +0000 | [diff] [blame] | 486 | virtual bool onReadPixels(GrRenderTarget* target, |
| 487 | int left, int top, int width, int height, |
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 488 | GrPixelConfig, |
| 489 | void* buffer, |
| 490 | size_t rowBytes, |
| 491 | bool invertY) = 0; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 492 | |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 493 | // overridden by API-specific derived class to perform the texture update |
| 494 | virtual void onWriteTexturePixels(GrTexture* texture, |
| 495 | int left, int top, int width, int height, |
| 496 | GrPixelConfig config, const void* buffer, |
| 497 | size_t rowBytes) = 0; |
| 498 | |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 499 | // overridden by API-specific derived class to perform the resolve |
| 500 | virtual void onResolveRenderTarget(GrRenderTarget* target) = 0; |
| 501 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 502 | // called to program the vertex data, indexCount will be 0 if drawing non- |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 503 | // indexed geometry. The subclass may adjust the startVertex and/or |
| 504 | // startIndex since it may have already accounted for these in the setup. |
| 505 | virtual void setupGeometry(int* startVertex, |
| 506 | int* startIndex, |
| 507 | int vertexCount, |
| 508 | int indexCount) = 0; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 509 | |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 510 | // width and height may be larger than rt (if underlying API allows it). |
| 511 | // Should attach the SB to the RT. Returns false if compatible sb could |
| 512 | // not be created. |
| 513 | virtual bool createStencilBufferForRenderTarget(GrRenderTarget* rt, |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 514 | int width, |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 515 | int height) = 0; |
| 516 | |
| 517 | // attaches an existing SB to an existing RT. |
| 518 | virtual bool attachStencilBufferToRenderTarget(GrStencilBuffer* sb, |
| 519 | GrRenderTarget* rt) = 0; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 520 | |
| 521 | // The GrGpu typically records the clients requested state and then flushes |
| 522 | // deltas from previous state at draw time. This function does the |
| 523 | // API-specific flush of the state |
| 524 | // returns false if current state is unsupported. |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 525 | virtual bool flushGraphicsState(DrawType) = 0; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 526 | |
| bsalomon@google.com | edc177d | 2011-08-05 15:46:40 +0000 | [diff] [blame] | 527 | // clears the entire stencil buffer to 0 |
| 528 | virtual void clearStencil() = 0; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 529 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 530 | private: |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 531 | GrContext* fContext; // not reffed (context refs gpu) |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 532 | |
| bsalomon@google.com | 80d09b9 | 2011-11-05 21:21:13 +0000 | [diff] [blame] | 533 | ResetTimestamp fResetTimestamp; |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 534 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 535 | GrVertexBufferAllocPool* fVertexPool; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 536 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 537 | GrIndexBufferAllocPool* fIndexPool; |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 538 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 539 | // counts number of uses of vertex/index pool in the geometry stack |
| 540 | int fVertexPoolUseCnt; |
| 541 | int fIndexPoolUseCnt; |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 542 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 543 | enum { |
| 544 | kPreallocGeomPoolStateStackCnt = 4, |
| 545 | }; |
| bsalomon@google.com | 9266901 | 2011-09-27 19:10:05 +0000 | [diff] [blame] | 546 | SkSTArray<kPreallocGeomPoolStateStackCnt, |
| 547 | GeometryPoolState, true> fGeomPoolStateStack; |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 548 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 549 | mutable GrIndexBuffer* fQuadIndexBuffer; // mutable so it can be |
| 550 | // created on-demand |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 551 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 552 | mutable GrVertexBuffer* fUnitSquareVertexBuffer; // mutable so it can be |
| 553 | // created on-demand |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 554 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 555 | bool fContextIsDirty; |
| 556 | |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 557 | GrResource* fResourceHead; |
| 558 | |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 559 | // Given a rt, find or create a stencil buffer and attach it |
| 560 | bool attachStencilBufferToRenderTarget(GrRenderTarget* target); |
| 561 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 562 | // GrDrawTarget overrides |
| 563 | virtual void onDrawIndexed(GrPrimitiveType type, |
| 564 | int startVertex, |
| 565 | int startIndex, |
| 566 | int vertexCount, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 567 | int indexCount) SK_OVERRIDE; |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 568 | virtual void onDrawNonIndexed(GrPrimitiveType type, |
| 569 | int startVertex, |
| bsalomon@google.com | 13f1b6f | 2012-05-31 12:52:43 +0000 | [diff] [blame] | 570 | int vertexCount) SK_OVERRIDE; |
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 571 | virtual void onStencilPath(const GrPath* path, GrPathFill fill) SK_OVERRIDE; |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 572 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 573 | // readies the pools to provide vertex/index data. |
| 574 | void prepareVertexPool(); |
| 575 | void prepareIndexPool(); |
| 576 | |
| bsalomon@google.com | b635d39 | 2011-11-05 12:47:43 +0000 | [diff] [blame] | 577 | void resetContext() { |
| bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 578 | // We call this because the client may have messed with the |
| 579 | // stencil buffer. Perhaps we should detect whether it is a |
| 580 | // internally created stencil buffer and if so skip the invalidate. |
| 581 | fClipMaskManager.invalidateStencilMask(); |
| bsalomon@google.com | b635d39 | 2011-11-05 12:47:43 +0000 | [diff] [blame] | 582 | this->onResetContext(); |
| 583 | ++fResetTimestamp; |
| 584 | } |
| 585 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 586 | void handleDirtyContext() { |
| 587 | if (fContextIsDirty) { |
| 588 | this->resetContext(); |
| 589 | fContextIsDirty = false; |
| 590 | } |
| 591 | } |
| 592 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 593 | typedef GrDrawTarget INHERITED; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 594 | }; |
| 595 | |
| 596 | #endif |