blob: 3a9813bd0f11c8ab7a744fe8344fa5016e636a01 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#ifndef GrDrawTarget_DEFINED
12#define GrDrawTarget_DEFINED
13
tomhudson@google.com93813632011-10-27 20:21:16 +000014#include "GrDrawState.h"
bsalomon@google.com934c5702012-03-20 21:17:58 +000015#include "GrIndexBuffer.h"
bsalomon@google.comaa5b6732011-07-29 15:13:20 +000016#include "GrMatrix.h"
17#include "GrRefCnt.h"
bsalomon@google.coma3201942012-06-21 19:58:20 +000018#include "GrTemplates.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000019
Scroggo97c88c22011-05-11 14:05:25 +000020#include "SkXfermode.h"
bsalomon@google.com46f7afb2012-01-18 19:51:55 +000021#include "SkTLazy.h"
robertphillips@google.coma2d71482012-08-01 20:08:47 +000022#include "SkTArray.h"
Scroggo97c88c22011-05-11 14:05:25 +000023
robertphillips@google.coma2d71482012-08-01 20:08:47 +000024class GrClipData;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000025class GrPath;
reed@google.comac10a2d2010-12-22 21:39:39 +000026class GrVertexBuffer;
reed@google.comac10a2d2010-12-22 21:39:39 +000027
28class GrDrawTarget : public GrRefCnt {
bsalomon@google.comf6601872012-08-28 21:11:35 +000029protected:
30 /** This helper class allows GrDrawTarget subclasses to set the caps values without having to be
31 made a friend of GrDrawTarget::Caps. */
32 class CapsInternals {
33 public:
bsalomon@google.com18c9c192011-09-22 21:01:31 +000034 bool f8BitPaletteSupport : 1;
bsalomon@google.com18c9c192011-09-22 21:01:31 +000035 bool fNPOTTextureTileSupport : 1;
bsalomon@google.com18c9c192011-09-22 21:01:31 +000036 bool fTwoSidedStencilSupport : 1;
37 bool fStencilWrapOpsSupport : 1;
38 bool fHWAALineSupport : 1;
bsalomon@google.com18c9c192011-09-22 21:01:31 +000039 bool fShaderDerivativeSupport : 1;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +000040 bool fGeometryShaderSupport : 1;
bsalomon@google.com18c9c192011-09-22 21:01:31 +000041 bool fFSAASupport : 1;
42 bool fDualSourceBlendingSupport : 1;
43 bool fBufferLockSupport : 1;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000044 bool fPathStencilingSupport : 1;
bsalomon@google.com18c9c192011-09-22 21:01:31 +000045 int fMaxRenderTargetSize;
46 int fMaxTextureSize;
47 };
48
bsalomon@google.comf6601872012-08-28 21:11:35 +000049public:
50 SK_DECLARE_INST_COUNT(GrDrawTarget)
51
52 /**
53 * Represents the draw target capabilities.
54 */
55 class Caps {
56 public:
57 Caps() { memset(this, 0, sizeof(Caps)); }
58 Caps(const Caps& c) { *this = c; }
59 Caps& operator= (const Caps& c) {
60 memcpy(this, &c, sizeof(Caps));
61 return *this;
62 }
63 void print() const;
64
65 bool eightBitPaletteSupport() const { return fInternals.f8BitPaletteSupport; }
66 bool npotTextureTileSupport() const { return fInternals.fNPOTTextureTileSupport; }
67 bool twoSidedStencilSupport() const { return fInternals.fTwoSidedStencilSupport; }
68 bool stencilWrapOpsSupport() const { return fInternals.fStencilWrapOpsSupport; }
69 bool hwAALineSupport() const { return fInternals.fHWAALineSupport; }
70 bool shaderDerivativeSupport() const { return fInternals.fShaderDerivativeSupport; }
71 bool geometryShaderSupport() const { return fInternals.fGeometryShaderSupport; }
72 bool fsaaSupport() const { return fInternals.fFSAASupport; }
73 bool dualSourceBlendingSupport() const { return fInternals.fDualSourceBlendingSupport; }
74 bool bufferLockSupport() const { return fInternals.fBufferLockSupport; }
75 bool pathStencilingSupport() const { return fInternals.fPathStencilingSupport; }
76
77 int maxRenderTargetSize() const { return fInternals.fMaxRenderTargetSize; }
78 int maxTextureSize() const { return fInternals.fMaxTextureSize; }
79 private:
80 CapsInternals fInternals;
bsalomon@google.com0d82fe52012-08-28 21:39:15 +000081 friend class GrDrawTarget; // to set values of fInternals
bsalomon@google.comf6601872012-08-28 21:11:35 +000082 };
83
reed@google.comac10a2d2010-12-22 21:39:39 +000084 ///////////////////////////////////////////////////////////////////////////
85
86 GrDrawTarget();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000087 virtual ~GrDrawTarget();
reed@google.comac10a2d2010-12-22 21:39:39 +000088
89 /**
bsalomon@google.com18c9c192011-09-22 21:01:31 +000090 * Gets the capabilities of the draw target.
91 */
92 const Caps& getCaps() const { return fCaps; }
93
94 /**
reed@google.comac10a2d2010-12-22 21:39:39 +000095 * Sets the current clip to the region specified by clip. All draws will be
96 * clipped against this clip if kClip_StateBit is enabled.
97 *
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +000098 * Setting the clip may (or may not) zero out the client's stencil bits.
99 *
reed@google.comac10a2d2010-12-22 21:39:39 +0000100 * @param description of the clipping region
101 */
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000102 void setClip(const GrClipData* clip);
reed@google.comac10a2d2010-12-22 21:39:39 +0000103
104 /**
105 * Gets the current clip.
106 *
107 * @return the clip.
108 */
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000109 const GrClipData* getClip() const;
reed@google.comac10a2d2010-12-22 21:39:39 +0000110
bsalomon@google.coma5d056a2012-03-27 15:59:58 +0000111 /**
112 * Sets the draw state object for the draw target. Note that this does not
113 * make a copy. The GrDrawTarget will take a reference to passed object.
114 * Passing NULL will cause the GrDrawTarget to use its own internal draw
115 * state object rather than an externally provided one.
116 */
117 void setDrawState(GrDrawState* drawState);
118
119 /**
120 * Read-only access to the GrDrawTarget's current draw state.
121 */
122 const GrDrawState& getDrawState() const { return *fDrawState; }
123
124 /**
125 * Read-write access to the GrDrawTarget's current draw state. Note that
126 * this doesn't ref.
127 */
128 GrDrawState* drawState() { return fDrawState; }
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000129
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000130 /**
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000131 * Color alpha and coverage are two inputs to the drawing pipeline. For some
132 * blend modes it is safe to fold the coverage into constant or per-vertex
133 * color alpha value. For other blend modes they must be handled separately.
134 * Depending on features available in the underlying 3D API this may or may
135 * not be possible.
136 *
bsalomon@google.come79c8152012-03-29 19:07:12 +0000137 * This function considers the current draw state and the draw target's
138 * capabilities to determine whether coverage can be handled correctly. The
139 * following assumptions are made:
140 * 1. The caller intends to somehow specify coverage. This can be
141 * specified either by enabling a coverage stage on the GrDrawState or
142 * via the vertex layout.
rmistry@google.comd6176b02012-08-23 18:14:13 +0000143 * 2. Other than enabling coverage stages, the current configuration of
bsalomon@google.come79c8152012-03-29 19:07:12 +0000144 * the target's GrDrawState is as it will be at draw time.
145 * 3. If a vertex source has not yet been specified then all stages with
146 * non-NULL textures will be referenced by the vertex layout.
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000147 */
148 bool canApplyCoverage() const;
149
150 /**
151 * Determines whether incorporating partial pixel coverage into the constant
152 * color specified by setColor or per-vertex colors will give the right
bsalomon@google.come79c8152012-03-29 19:07:12 +0000153 * blending result. If a vertex source has not yet been specified then
154 * the function assumes that all stages with non-NULL textures will be
155 * referenced by the vertex layout.
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000156 */
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000157 bool canTweakAlphaForCoverage() const;
bsalomon@google.comd46e2422011-09-23 17:40:07 +0000158
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000159 /**
rmistry@google.comd6176b02012-08-23 18:14:13 +0000160 * Given the current draw state and hw support, will HW AA lines be used
bsalomon@google.come79c8152012-03-29 19:07:12 +0000161 * (if line primitive type is drawn)? If a vertex source has not yet been
162 * specified then the function assumes that all stages with non-NULL
163 * textures will be referenced by the vertex layout.
bsalomon@google.com471d4712011-08-23 15:45:25 +0000164 */
tomhudson@google.com93813632011-10-27 20:21:16 +0000165 bool willUseHWAALines() const;
bsalomon@google.com471d4712011-08-23 15:45:25 +0000166
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000167 /**
bsalomon@google.coma3108262011-10-10 14:08:47 +0000168 * The format of vertices is represented as a bitfield of flags.
169 * Flags that indicate the layout of vertex data. Vertices always contain
tomhudson@google.com93813632011-10-27 20:21:16 +0000170 * positions and may also contain up to GrDrawState::kMaxTexCoords sets
tomhudson@google.comb213ed82012-06-25 15:22:12 +0000171 * of 2D texture coordinates, per-vertex colors, and per-vertex coverage.
rmistry@google.comd6176b02012-08-23 18:14:13 +0000172 * Each stage can
bsalomon@google.coma3108262011-10-10 14:08:47 +0000173 * use any of the texture coordinates as its input texture coordinates or it
174 * may use the positions as texture coordinates.
175 *
176 * If no texture coordinates are specified for a stage then the stage is
177 * disabled.
178 *
179 * Only one type of texture coord can be specified per stage. For
180 * example StageTexCoordVertexLayoutBit(0, 2) and
181 * StagePosAsTexCoordVertexLayoutBit(0) cannot both be specified.
182 *
rmistry@google.comd6176b02012-08-23 18:14:13 +0000183 * The order in memory is always (position, texture coord 0, ..., color,
184 * coverage) with any unused fields omitted. Note that this means that if
bsalomon@google.coma3108262011-10-10 14:08:47 +0000185 * only texture coordinates 1 is referenced then there is no texture
186 * coordinates 0 and the order would be (position, texture coordinate 1
187 * [, color][, coverage]).
188 */
189
190 /**
191 * Generates a bit indicating that a texture stage uses texture coordinates
192 *
bsalomon@google.com08283af2012-10-26 13:01:20 +0000193 * @param stageIdx the stage that will use texture coordinates.
bsalomon@google.coma3108262011-10-10 14:08:47 +0000194 * @param texCoordIdx the index of the texture coordinates to use
195 *
196 * @return the bit to add to a GrVertexLayout bitfield.
197 */
bsalomon@google.com08283af2012-10-26 13:01:20 +0000198 static int StageTexCoordVertexLayoutBit(int stageIdx, int texCoordIdx) {
199 GrAssert(stageIdx < GrDrawState::kNumStages);
tomhudson@google.com93813632011-10-27 20:21:16 +0000200 GrAssert(texCoordIdx < GrDrawState::kMaxTexCoords);
bsalomon@google.com08283af2012-10-26 13:01:20 +0000201 return 1 << (stageIdx + (texCoordIdx * GrDrawState::kNumStages));
bsalomon@google.coma3108262011-10-10 14:08:47 +0000202 }
203
bsalomon@google.com08283af2012-10-26 13:01:20 +0000204 static bool StageUsesTexCoords(GrVertexLayout layout, int stageIdx);
tomhudson@google.comb213ed82012-06-25 15:22:12 +0000205
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000206private:
bsalomon@google.com52544c72012-07-10 15:06:59 +0000207 // non-stage bits start at this index.
208 static const int STAGE_BIT_CNT = GrDrawState::kNumStages *
209 GrDrawState::kMaxTexCoords;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000210public:
bsalomon@google.com5782d712011-01-21 21:03:59 +0000211
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000212 /**
213 * Additional Bits that can be specified in GrVertexLayout.
reed@google.comac10a2d2010-12-22 21:39:39 +0000214 */
215 enum VertexLayoutBits {
bsalomon@google.coma3108262011-10-10 14:08:47 +0000216 /* vertices have colors (GrColor) */
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000217 kColor_VertexLayoutBit = 1 << (STAGE_BIT_CNT + 0),
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000218 /* vertices have coverage (GrColor)
bsalomon@google.come10f6fd2011-10-11 20:15:26 +0000219 */
bsalomon@google.coma3108262011-10-10 14:08:47 +0000220 kCoverage_VertexLayoutBit = 1 << (STAGE_BIT_CNT + 1),
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000221 /* Use text vertices. (Pos and tex coords may be a different type for
bsalomon@google.come10f6fd2011-10-11 20:15:26 +0000222 * text [GrGpuTextVertex vs GrPoint].)
223 */
bsalomon@google.coma3108262011-10-10 14:08:47 +0000224 kTextFormat_VertexLayoutBit = 1 << (STAGE_BIT_CNT + 2),
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000225
bsalomon@google.come10f6fd2011-10-11 20:15:26 +0000226 /* Each vertex specificies an edge. Distance to the edge is used to
bsalomon@google.comcff56082012-01-11 15:33:20 +0000227 * compute a coverage. See GrDrawState::setVertexEdgeType().
bsalomon@google.come10f6fd2011-10-11 20:15:26 +0000228 */
bsalomon@google.coma3108262011-10-10 14:08:47 +0000229 kEdge_VertexLayoutBit = 1 << (STAGE_BIT_CNT + 3),
reed@google.comac10a2d2010-12-22 21:39:39 +0000230 // for below assert
bsalomon@google.comd302f142011-03-03 13:54:13 +0000231 kDummyVertexLayoutBit,
232 kHighVertexLayoutBit = kDummyVertexLayoutBit - 1
reed@google.comac10a2d2010-12-22 21:39:39 +0000233 };
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000234 // make sure we haven't exceeded the number of bits in GrVertexLayout.
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000235 GR_STATIC_ASSERT(kHighVertexLayoutBit < ((uint64_t)1 << 8*sizeof(GrVertexLayout)));
reed@google.comac10a2d2010-12-22 21:39:39 +0000236
237 /**
bsalomon@google.come3d70952012-03-13 12:40:53 +0000238 * There are three types of "sources" of geometry (vertices and indices) for
239 * draw calls made on the target. When performing an indexed draw, the
240 * indices and vertices can use different source types. Once a source is
bsalomon@google.com934c5702012-03-20 21:17:58 +0000241 * specified it can be used for multiple draws. However, the time at which
242 * the geometry data is no longer editable depends on the source type.
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000243 *
244 * Sometimes it is necessary to perform a draw while upstack code has
bsalomon@google.come3d70952012-03-13 12:40:53 +0000245 * already specified geometry that it isn't finished with. So there are push
246 * and pop methods. This allows the client to push the sources, draw
247 * something using alternate sources, and then pop to restore the original
248 * sources.
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000249 *
bsalomon@google.come3d70952012-03-13 12:40:53 +0000250 * Aside from pushes and pops, a source remains valid until another source
251 * is set or resetVertexSource / resetIndexSource is called. Drawing from
252 * a reset source is an error.
253 *
254 * The three types of sources are:
255 *
256 * 1. A cpu array (set*SourceToArray). This is useful when the caller
257 * already provided vertex data in a format compatible with a
258 * GrVertexLayout. The data in the array is consumed at the time that
259 * set*SourceToArray is called and subsequent edits to the array will not
260 * be reflected in draws.
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000261 *
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000262 * 2. Reserve. This is most useful when the caller has data it must
263 * transform before drawing and is not long-lived. The caller requests
264 * that the draw target make room for some amount of vertex and/or index
265 * data. The target provides ptrs to hold the vertex and/or index data.
266 *
rmistry@google.comd6176b02012-08-23 18:14:13 +0000267 * The data is writable up until the next drawIndexed, drawNonIndexed,
bsalomon@google.com934c5702012-03-20 21:17:58 +0000268 * drawIndexedInstances, or pushGeometrySource. At this point the data is
269 * frozen and the ptrs are no longer valid.
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000270 *
bsalomon@google.come3d70952012-03-13 12:40:53 +0000271 * Where the space is allocated and how it is uploaded to the GPU is
272 * subclass-dependent.
273 *
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000274 * 3. Vertex and Index Buffers. This is most useful for geometry that will
bsalomon@google.come3d70952012-03-13 12:40:53 +0000275 * is long-lived. When the data in the buffer is consumed depends on the
rmistry@google.comd6176b02012-08-23 18:14:13 +0000276 * GrDrawTarget subclass. For deferred subclasses the caller has to
bsalomon@google.come3d70952012-03-13 12:40:53 +0000277 * guarantee that the data is still available in the buffers at playback.
278 * (TODO: Make this more automatic as we have done for read/write pixels)
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000279 */
280
281 /**
bsalomon@google.come3d70952012-03-13 12:40:53 +0000282 * Reserves space for vertices and/or indices. Zero can be specifed as
283 * either the vertex or index count if the caller desires to only reserve
rmistry@google.comd6176b02012-08-23 18:14:13 +0000284 * space for only indices or only vertices. If zero is specifed for
bsalomon@google.come3d70952012-03-13 12:40:53 +0000285 * vertexCount then the vertex source will be unmodified and likewise for
286 * indexCount.
reed@google.comac10a2d2010-12-22 21:39:39 +0000287 *
bsalomon@google.come3d70952012-03-13 12:40:53 +0000288 * If the function returns true then the reserve suceeded and the vertices
289 * and indices pointers will point to the space created.
reed@google.comac10a2d2010-12-22 21:39:39 +0000290 *
bsalomon@google.come3d70952012-03-13 12:40:53 +0000291 * If the target cannot make space for the request then this function will
292 * return false. If vertexCount was non-zero then upon failure the vertex
293 * source is reset and likewise for indexCount.
reed@google.comac10a2d2010-12-22 21:39:39 +0000294 *
bsalomon@google.come3d70952012-03-13 12:40:53 +0000295 * The pointers to the space allocated for vertices and indices remain valid
bsalomon@google.com934c5702012-03-20 21:17:58 +0000296 * until a drawIndexed, drawNonIndexed, drawIndexedInstances, or push/
297 * popGeomtrySource is called. At that point logically a snapshot of the
298 * data is made and the pointers are invalid.
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000299 *
reed@google.comac10a2d2010-12-22 21:39:39 +0000300 * @param vertexLayout the format of vertices (ignored if vertexCount == 0).
bsalomon@google.come3d70952012-03-13 12:40:53 +0000301 * @param vertexCount the number of vertices to reserve space for. Can be
302 * 0.
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000303 * @param indexCount the number of indices to reserve space for. Can be 0.
bsalomon@google.come3d70952012-03-13 12:40:53 +0000304 * @param vertices will point to reserved vertex space if vertexCount is
rmistry@google.comd6176b02012-08-23 18:14:13 +0000305 * non-zero. Illegal to pass NULL if vertexCount > 0.
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000306 * @param indices will point to reserved index space if indexCount is
307 * non-zero. Illegal to pass NULL if indexCount > 0.
308 */
bsalomon@google.com97805382012-03-13 14:32:07 +0000309 bool reserveVertexAndIndexSpace(GrVertexLayout vertexLayout,
310 int vertexCount,
311 int indexCount,
312 void** vertices,
313 void** indices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000314
reed@google.comac10a2d2010-12-22 21:39:39 +0000315 /**
316 * Provides hints to caller about the number of vertices and indices
317 * that can be allocated cheaply. This can be useful if caller is reserving
318 * space but doesn't know exactly how much geometry is needed.
319 *
320 * Also may hint whether the draw target should be flushed first. This is
321 * useful for deferred targets.
322 *
323 * @param vertexLayout layout of vertices caller would like to reserve
324 * @param vertexCount in: hint about how many vertices the caller would
325 * like to allocate.
326 * out: a hint about the number of vertices that can be
327 * allocated cheaply. Negative means no hint.
328 * Ignored if NULL.
329 * @param indexCount in: hint about how many indices the caller would
330 * like to allocate.
331 * out: a hint about the number of indices that can be
332 * allocated cheaply. Negative means no hint.
333 * Ignored if NULL.
334 *
335 * @return true if target should be flushed based on the input values.
336 */
337 virtual bool geometryHints(GrVertexLayout vertexLayout,
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000338 int* vertexCount,
339 int* indexCount) const;
reed@google.comac10a2d2010-12-22 21:39:39 +0000340
341 /**
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000342 * Sets source of vertex data for the next draw. Array must contain
343 * the vertex data when this is called.
reed@google.comac10a2d2010-12-22 21:39:39 +0000344 *
345 * @param array cpu array containing vertex data.
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000346 * @param size size of the vertex data.
347 * @param vertexCount the number of vertices in the array.
reed@google.comac10a2d2010-12-22 21:39:39 +0000348 */
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000349 void setVertexSourceToArray(GrVertexLayout vertexLayout,
350 const void* vertexArray,
351 int vertexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000352
353 /**
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000354 * Sets source of index data for the next indexed draw. Array must contain
355 * the indices when this is called.
reed@google.comac10a2d2010-12-22 21:39:39 +0000356 *
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000357 * @param array cpu array containing index data.
358 * @param indexCount the number of indices in the array.
reed@google.comac10a2d2010-12-22 21:39:39 +0000359 */
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000360 void setIndexSourceToArray(const void* indexArray, int indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000361
362 /**
363 * Sets source of vertex data for the next draw. Data does not have to be
bsalomon@google.com934c5702012-03-20 21:17:58 +0000364 * in the buffer until drawIndexed, drawNonIndexed, or drawIndexedInstances.
reed@google.comac10a2d2010-12-22 21:39:39 +0000365 *
366 * @param buffer vertex buffer containing vertex data. Must be
367 * unlocked before draw call.
368 * @param vertexLayout layout of the vertex data in the buffer.
369 */
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000370 void setVertexSourceToBuffer(GrVertexLayout vertexLayout,
371 const GrVertexBuffer* buffer);
reed@google.comac10a2d2010-12-22 21:39:39 +0000372
373 /**
374 * Sets source of index data for the next indexed draw. Data does not have
bsalomon@google.com934c5702012-03-20 21:17:58 +0000375 * to be in the buffer until drawIndexed.
reed@google.comac10a2d2010-12-22 21:39:39 +0000376 *
377 * @param buffer index buffer containing indices. Must be unlocked
378 * before indexed draw call.
379 */
380 void setIndexSourceToBuffer(const GrIndexBuffer* buffer);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000381
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000382 /**
383 * Resets vertex source. Drawing from reset vertices is illegal. Set vertex
384 * source to reserved, array, or buffer before next draw. May be able to free
385 * up temporary storage allocated by setVertexSourceToArray or
386 * reserveVertexSpace.
387 */
388 void resetVertexSource();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000389
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000390 /**
391 * Resets index source. Indexed Drawing from reset indices is illegal. Set
392 * index source to reserved, array, or buffer before next indexed draw. May
393 * be able to free up temporary storage allocated by setIndexSourceToArray
394 * or reserveIndexSpace.
395 */
bsalomon@google.com97805382012-03-13 14:32:07 +0000396 void resetIndexSource();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000397
bsalomon@google.com97805382012-03-13 14:32:07 +0000398 /**
399 * Query to find out if the vertex or index source is reserved.
400 */
401 bool hasReservedVerticesOrIndices() const {
bsalomon@google.com73d98aa2012-03-13 14:41:19 +0000402 return kReserved_GeometrySrcType == this->getGeomSrc().fVertexSrc ||
bsalomon@google.com97805382012-03-13 14:32:07 +0000403 kReserved_GeometrySrcType == this->getGeomSrc().fIndexSrc;
404 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000405
406 /**
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000407 * Pushes and resets the vertex/index sources. Any reserved vertex / index
408 * data is finalized (i.e. cannot be updated after the matching pop but can
409 * be drawn from). Must be balanced by a pop.
410 */
411 void pushGeometrySource();
412
413 /**
414 * Pops the vertex / index sources from the matching push.
415 */
416 void popGeometrySource();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000417
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000418 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000419 * Draws indexed geometry using the current state and current vertex / index
420 * sources.
421 *
422 * @param type The type of primitives to draw.
423 * @param startVertex the vertex in the vertex array/buffer corresponding
424 * to index 0
425 * @param startIndex first index to read from index src.
426 * @param vertexCount one greater than the max index.
427 * @param indexCount the number of index elements to read. The index count
428 * is effectively trimmed to the last completely
429 * specified primitive.
430 */
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000431 void drawIndexed(GrPrimitiveType type,
432 int startVertex,
433 int startIndex,
434 int vertexCount,
435 int indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000436
437 /**
438 * Draws non-indexed geometry using the current state and current vertex
439 * sources.
440 *
441 * @param type The type of primitives to draw.
442 * @param startVertex the vertex in the vertex array/buffer corresponding
443 * to index 0
444 * @param vertexCount one greater than the max index.
445 */
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000446 void drawNonIndexed(GrPrimitiveType type,
447 int startVertex,
448 int vertexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000449
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000450 /**
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000451 * Draws path into the stencil buffer. The fill must be either even/odd or
452 * winding (not inverse or hairline). It will respect the HW antialias flag
453 * on the draw state (if possible in the 3D API).
454 */
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000455 void stencilPath(const GrPath*, GrPathFill);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000456
457 /**
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000458 * Helper function for drawing rects. This does not use the current index
459 * and vertex sources. After returning, the vertex and index sources may
460 * have changed. They should be reestablished before the next drawIndexed
461 * or drawNonIndexed. This cannot be called between reserving and releasing
462 * geometry. The GrDrawTarget subclass may be able to perform additional
bsalomon@google.comd302f142011-03-03 13:54:13 +0000463 * optimizations if drawRect is used rather than drawIndexed or
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000464 * drawNonIndexed.
465 * @param rect the rect to draw
466 * @param matrix optional matrix applied to rect (before viewMatrix)
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000467 * @param srcRects specifies rects for stages enabled by stageEnableMask.
468 * if stageEnableMask bit i is 1, srcRects is not NULL,
469 * and srcRects[i] is not NULL, then srcRects[i] will be
470 * used as coordinates for stage i. Otherwise, if stage i
471 * is enabled then rect is used as the coordinates.
472 * @param srcMatrices optional matrices applied to srcRects. If
473 * srcRect[i] is non-NULL and srcMatrices[i] is
474 * non-NULL then srcRect[i] will be transformed by
475 * srcMatrix[i]. srcMatrices can be NULL when no
476 * srcMatrices are desired.
477 */
bsalomon@google.comd302f142011-03-03 13:54:13 +0000478 virtual void drawRect(const GrRect& rect,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000479 const GrMatrix* matrix,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000480 const GrRect* srcRects[],
481 const GrMatrix* srcMatrices[]);
482
483 /**
bsalomon@google.com934c5702012-03-20 21:17:58 +0000484 * This call is used to draw multiple instances of some geometry with a
485 * given number of vertices (V) and indices (I) per-instance. The indices in
486 * the index source must have the form i[k+I] == i[k] + V. Also, all indices
487 * i[kI] ... i[(k+1)I-1] must be elements of the range kV ... (k+1)V-1. As a
488 * concrete example, the following index buffer for drawing a series of
489 * quads each as two triangles each satisfies these conditions with V=4 and
490 * I=6:
491 * (0,1,2,0,2,3, 4,5,6,4,6,7, 8,9,10,8,10,11, ...)
492 *
493 * The call assumes that the pattern of indices fills the entire index
494 * source. The size of the index buffer limits the number of instances that
495 * can be drawn by the GPU in a single draw. However, the caller may specify
496 * any (positive) number for instanceCount and if necessary multiple GPU
497 * draws will be issued. Morever, when drawIndexedInstances is called
498 * multiple times it may be possible for GrDrawTarget to group them into a
499 * single GPU draw.
500 *
501 * @param type the type of primitives to draw
502 * @param instanceCount the number of instances to draw. Each instance
503 * consists of verticesPerInstance vertices indexed by
504 * indicesPerInstance indices drawn as the primitive
505 * type specified by type.
506 * @param verticesPerInstance The number of vertices in each instance (V
507 * in the above description).
508 * @param indicesPerInstance The number of indices in each instance (I
509 * in the above description).
510 */
511 virtual void drawIndexedInstances(GrPrimitiveType type,
512 int instanceCount,
513 int verticesPerInstance,
514 int indicesPerInstance);
515
516 /**
bsalomon@google.comd302f142011-03-03 13:54:13 +0000517 * Helper for drawRect when the caller doesn't need separate src rects or
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000518 * matrices.
519 */
bsalomon@google.comd302f142011-03-03 13:54:13 +0000520 void drawSimpleRect(const GrRect& rect,
bsalomon@google.come3d32162012-07-20 13:37:06 +0000521 const GrMatrix* matrix) {
522 drawRect(rect, matrix, NULL, NULL);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000523 }
524
bsalomon@google.com0b335c12011-04-25 19:17:44 +0000525 /**
rmistry@google.comd6176b02012-08-23 18:14:13 +0000526 * Clear the current render target if one isn't passed in. Ignores the
527 * clip and all other draw state (blend mode, stages, etc). Clears the
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000528 * whole thing if rect is NULL, otherwise just the rect.
bsalomon@google.com0b335c12011-04-25 19:17:44 +0000529 */
rmistry@google.comd6176b02012-08-23 18:14:13 +0000530 virtual void clear(const GrIRect* rect,
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000531 GrColor color,
532 GrRenderTarget* renderTarget = NULL) = 0;
bsalomon@google.com0b335c12011-04-25 19:17:44 +0000533
robertphillips@google.comff175842012-05-14 19:31:39 +0000534 /**
535 * Release any resources that are cached but not currently in use. This
536 * is intended to give an application some recourse when resources are low.
537 */
538 virtual void purgeResources() {};
539
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000540 ////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000541
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000542 /**
543 * See AutoStateRestore below.
544 */
545 enum ASRInit {
546 kPreserve_ASRInit,
547 kReset_ASRInit
548 };
549
550 /**
551 * Saves off the current state and restores it in the destructor. It will
552 * install a new GrDrawState object on the target (setDrawState) and restore
553 * the previous one in the destructor. The caller should call drawState() to
554 * get the new draw state after the ASR is installed.
555 *
556 * GrDrawState* state = target->drawState();
557 * AutoStateRestore asr(target, GrDrawTarget::kReset_ASRInit).
558 * state->setRenderTarget(rt); // state refers to the GrDrawState set on
559 * // target before asr was initialized.
560 * // Therefore, rt is set on the GrDrawState
561 * // that will be restored after asr's
562 * // destructor rather than target's current
rmistry@google.comd6176b02012-08-23 18:14:13 +0000563 * // GrDrawState.
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000564 */
reed@google.comac10a2d2010-12-22 21:39:39 +0000565 class AutoStateRestore : ::GrNoncopyable {
566 public:
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000567 /**
568 * Default ASR will have no effect unless set() is subsequently called.
569 */
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000570 AutoStateRestore();
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000571
572 /**
573 * Saves the state on target. The state will be restored when the ASR
574 * is destroyed. If this constructor is used do not call set().
575 *
576 * @param init Should the newly installed GrDrawState be a copy of the
577 * previous state or a default-initialized GrDrawState.
578 */
579 AutoStateRestore(GrDrawTarget* target, ASRInit init);
580
reed@google.comac10a2d2010-12-22 21:39:39 +0000581 ~AutoStateRestore();
582
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000583 /**
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000584 * Saves the state on target. The state will be restored when the ASR
585 * is destroyed. This should only be called once per ASR object and only
586 * when the default constructor was used. For nested saves use multiple
587 * ASR objects.
588 *
589 * @param init Should the newly installed GrDrawState be a copy of the
590 * previous state or a default-initialized GrDrawState.
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000591 */
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000592 void set(GrDrawTarget* target, ASRInit init);
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000593
reed@google.comac10a2d2010-12-22 21:39:39 +0000594 private:
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000595 GrDrawTarget* fDrawTarget;
596 SkTLazy<GrDrawState> fTempState;
597 GrDrawState* fSavedState;
reed@google.comac10a2d2010-12-22 21:39:39 +0000598 };
599
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000600 ////////////////////////////////////////////////////////////////////////////
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000601
reed@google.comac10a2d2010-12-22 21:39:39 +0000602 class AutoReleaseGeometry : ::GrNoncopyable {
603 public:
604 AutoReleaseGeometry(GrDrawTarget* target,
605 GrVertexLayout vertexLayout,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000606 int vertexCount,
607 int indexCount);
608 AutoReleaseGeometry();
609 ~AutoReleaseGeometry();
bsalomon@google.com5782d712011-01-21 21:03:59 +0000610 bool set(GrDrawTarget* target,
611 GrVertexLayout vertexLayout,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000612 int vertexCount,
613 int indexCount);
bsalomon@google.coma47a48d2011-04-26 20:22:11 +0000614 bool succeeded() const { return NULL != fTarget; }
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000615 void* vertices() const { GrAssert(this->succeeded()); return fVertices; }
616 void* indices() const { GrAssert(this->succeeded()); return fIndices; }
reed@google.comac10a2d2010-12-22 21:39:39 +0000617 GrPoint* positions() const {
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000618 return static_cast<GrPoint*>(this->vertices());
reed@google.comac10a2d2010-12-22 21:39:39 +0000619 }
620
621 private:
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000622 void reset();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000623
reed@google.comac10a2d2010-12-22 21:39:39 +0000624 GrDrawTarget* fTarget;
reed@google.comac10a2d2010-12-22 21:39:39 +0000625 void* fVertices;
626 void* fIndices;
627 };
628
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000629 ////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000630
631 class AutoClipRestore : ::GrNoncopyable {
632 public:
633 AutoClipRestore(GrDrawTarget* target) {
634 fTarget = target;
635 fClip = fTarget->getClip();
636 }
637
638 ~AutoClipRestore() {
639 fTarget->setClip(fClip);
640 }
641 private:
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000642 GrDrawTarget* fTarget;
643 const GrClipData* fClip;
reed@google.comac10a2d2010-12-22 21:39:39 +0000644 };
rmistry@google.comd6176b02012-08-23 18:14:13 +0000645
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000646 ////////////////////////////////////////////////////////////////////////////
rmistry@google.comd6176b02012-08-23 18:14:13 +0000647
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000648 class AutoGeometryPush : ::GrNoncopyable {
649 public:
650 AutoGeometryPush(GrDrawTarget* target) {
651 GrAssert(NULL != target);
652 fTarget = target;
653 target->pushGeometrySource();
654 }
655 ~AutoGeometryPush() {
656 fTarget->popGeometrySource();
657 }
658 private:
659 GrDrawTarget* fTarget;
660 };
reed@google.comac10a2d2010-12-22 21:39:39 +0000661
662 ////////////////////////////////////////////////////////////////////////////
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000663 // Helpers for picking apart vertex layouts
bsalomon@google.com5782d712011-01-21 21:03:59 +0000664
reed@google.comac10a2d2010-12-22 21:39:39 +0000665 /**
666 * Helper function to compute the size of a vertex from a vertex layout
667 * @return size of a single vertex.
668 */
669 static size_t VertexSize(GrVertexLayout vertexLayout);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000670
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000671 /**
672 * Helper function for determining the index of texture coordinates that
673 * is input for a texture stage. Note that a stage may instead use positions
674 * as texture coordinates, in which case the result of the function is
675 * indistinguishable from the case when the stage is disabled.
676 *
bsalomon@google.com08283af2012-10-26 13:01:20 +0000677 * @param stageIdx the stage to query
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000678 * @param vertexLayout layout to query
679 *
680 * @return the texture coordinate index or -1 if the stage doesn't use
681 * separate (non-position) texture coordinates.
682 */
bsalomon@google.com08283af2012-10-26 13:01:20 +0000683 static int VertexTexCoordsForStage(int stageIdx, GrVertexLayout vertexLayout);
reed@google.comac10a2d2010-12-22 21:39:39 +0000684
685 /**
686 * Helper function to compute the offset of texture coordinates in a vertex
687 * @return offset of texture coordinates in vertex layout or -1 if the
bsalomon@google.com5782d712011-01-21 21:03:59 +0000688 * layout has no texture coordinates. Will be 0 if positions are
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000689 * used as texture coordinates for the stage.
reed@google.comac10a2d2010-12-22 21:39:39 +0000690 */
bsalomon@google.com08283af2012-10-26 13:01:20 +0000691 static int VertexStageCoordOffset(int stageIdx, GrVertexLayout vertexLayout);
reed@google.comac10a2d2010-12-22 21:39:39 +0000692
693 /**
694 * Helper function to compute the offset of the color in a vertex
695 * @return offset of color in vertex layout or -1 if the
696 * layout has no color.
697 */
698 static int VertexColorOffset(GrVertexLayout vertexLayout);
699
bsalomon@google.coma3108262011-10-10 14:08:47 +0000700 /**
701 * Helper function to compute the offset of the coverage in a vertex
702 * @return offset of coverage in vertex layout or -1 if the
703 * layout has no coverage.
704 */
705 static int VertexCoverageOffset(GrVertexLayout vertexLayout);
706
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000707 /**
708 * Helper function to compute the offset of the edge pts in a vertex
709 * @return offset of edge in vertex layout or -1 if the
710 * layout has no edge.
711 */
712 static int VertexEdgeOffset(GrVertexLayout vertexLayout);
713
reed@google.comac10a2d2010-12-22 21:39:39 +0000714 /**
bsalomon@google.com5782d712011-01-21 21:03:59 +0000715 * Helper function to determine if vertex layout contains explicit texture
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000716 * coordinates of some index.
717 *
718 * @param coordIndex the tex coord index to query
719 * @param vertexLayout layout to query
720 *
bsalomon@google.com5782d712011-01-21 21:03:59 +0000721 * @return true if vertex specifies texture coordinates for the index,
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000722 * false otherwise.
reed@google.comac10a2d2010-12-22 21:39:39 +0000723 */
bsalomon@google.com5782d712011-01-21 21:03:59 +0000724 static bool VertexUsesTexCoordIdx(int coordIndex,
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000725 GrVertexLayout vertexLayout);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000726
reed@google.comac10a2d2010-12-22 21:39:39 +0000727 /**
bsalomon@google.com5782d712011-01-21 21:03:59 +0000728 * Helper function to compute the size of each vertex and the offsets of
729 * texture coordinates and color. Determines tex coord offsets by tex coord
730 * index rather than by stage. (Each stage can be mapped to any t.c. index
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000731 * by StageTexCoordVertexLayoutBit.)
732 *
733 * @param vertexLayout the layout to query
734 * @param texCoordOffsetsByIdx after return it is the offset of each
735 * tex coord index in the vertex or -1 if
bsalomon@google.coma3108262011-10-10 14:08:47 +0000736 * index isn't used. (optional)
737 * @param colorOffset after return it is the offset of the
738 * color field in each vertex, or -1 if
739 * there aren't per-vertex colors. (optional)
740 * @param coverageOffset after return it is the offset of the
741 * coverage field in each vertex, or -1 if
742 * there aren't per-vertex coeverages.
743 * (optional)
744 * @param edgeOffset after return it is the offset of the
745 * edge eq field in each vertex, or -1 if
746 * there aren't per-vertex edge equations.
747 * (optional)
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000748 * @return size of a single vertex
749 */
750 static int VertexSizeAndOffsetsByIdx(GrVertexLayout vertexLayout,
tomhudson@google.com93813632011-10-27 20:21:16 +0000751 int texCoordOffsetsByIdx[GrDrawState::kMaxTexCoords],
752 int *colorOffset,
753 int *coverageOffset,
754 int* edgeOffset);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000755
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000756 /**
bsalomon@google.com5782d712011-01-21 21:03:59 +0000757 * Helper function to compute the size of each vertex and the offsets of
758 * texture coordinates and color. Determines tex coord offsets by stage
759 * rather than by index. (Each stage can be mapped to any t.c. index
760 * by StageTexCoordVertexLayoutBit.) If a stage uses positions for
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000761 * tex coords then that stage's offset will be 0 (positions are always at 0).
762 *
763 * @param vertexLayout the layout to query
764 * @param texCoordOffsetsByStage after return it is the offset of each
765 * tex coord index in the vertex or -1 if
bsalomon@google.coma3108262011-10-10 14:08:47 +0000766 * index isn't used. (optional)
767 * @param colorOffset after return it is the offset of the
768 * color field in each vertex, or -1 if
769 * there aren't per-vertex colors.
770 * (optional)
771 * @param coverageOffset after return it is the offset of the
772 * coverage field in each vertex, or -1 if
773 * there aren't per-vertex coeverages.
774 * (optional)
775 * @param edgeOffset after return it is the offset of the
776 * edge eq field in each vertex, or -1 if
777 * there aren't per-vertex edge equations.
778 * (optional)
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000779 * @return size of a single vertex
780 */
781 static int VertexSizeAndOffsetsByStage(GrVertexLayout vertexLayout,
tomhudson@google.com93813632011-10-27 20:21:16 +0000782 int texCoordOffsetsByStage[GrDrawState::kNumStages],
783 int* colorOffset,
784 int* coverageOffset,
785 int* edgeOffset);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000786
787 /**
788 * Accessing positions, texture coords, or colors, of a vertex within an
789 * array is a hassle involving casts and simple math. These helpers exist
790 * to keep GrDrawTarget clients' code a bit nicer looking.
791 */
792
793 /**
794 * Gets a pointer to a GrPoint of a vertex's position or texture
795 * coordinate.
796 * @param vertices the vetex array
797 * @param vertexIndex the index of the vertex in the array
798 * @param vertexSize the size of each vertex in the array
799 * @param offset the offset in bytes of the vertex component.
800 * Defaults to zero (corresponding to vertex position)
801 * @return pointer to the vertex component as a GrPoint
802 */
bsalomon@google.comd302f142011-03-03 13:54:13 +0000803 static GrPoint* GetVertexPoint(void* vertices,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000804 int vertexIndex,
805 int vertexSize,
806 int offset = 0) {
807 intptr_t start = GrTCast<intptr_t>(vertices);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000808 return GrTCast<GrPoint*>(start + offset +
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000809 vertexIndex * vertexSize);
810 }
811 static const GrPoint* GetVertexPoint(const void* vertices,
812 int vertexIndex,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000813 int vertexSize,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000814 int offset = 0) {
815 intptr_t start = GrTCast<intptr_t>(vertices);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000816 return GrTCast<const GrPoint*>(start + offset +
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000817 vertexIndex * vertexSize);
818 }
819
820 /**
821 * Gets a pointer to a GrColor inside a vertex within a vertex array.
822 * @param vertices the vetex array
823 * @param vertexIndex the index of the vertex in the array
824 * @param vertexSize the size of each vertex in the array
825 * @param offset the offset in bytes of the vertex color
826 * @return pointer to the vertex component as a GrColor
827 */
bsalomon@google.comd302f142011-03-03 13:54:13 +0000828 static GrColor* GetVertexColor(void* vertices,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000829 int vertexIndex,
830 int vertexSize,
831 int offset) {
832 intptr_t start = GrTCast<intptr_t>(vertices);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000833 return GrTCast<GrColor*>(start + offset +
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000834 vertexIndex * vertexSize);
835 }
836 static const GrColor* GetVertexColor(const void* vertices,
837 int vertexIndex,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000838 int vertexSize,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000839 int offset) {
840 const intptr_t start = GrTCast<intptr_t>(vertices);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000841 return GrTCast<const GrColor*>(start + offset +
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000842 vertexIndex * vertexSize);
843 }
844
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000845 static void VertexLayoutUnitTest();
846
reed@google.comac10a2d2010-12-22 21:39:39 +0000847protected:
bsalomon@google.com471d4712011-08-23 15:45:25 +0000848
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000849 /**
850 * Optimizations for blending / coverage to be applied based on the current
851 * state.
852 * Subclasses that actually draw (as opposed to those that just buffer for
853 * playback) must implement the flags that replace the output color.
854 */
855 enum BlendOptFlags {
856 /**
857 * No optimization
858 */
859 kNone_BlendOpt = 0,
860 /**
861 * Don't draw at all
862 */
863 kSkipDraw_BlendOptFlag = 0x2,
864 /**
865 * Emit the src color, disable HW blending (replace dst with src)
866 */
867 kDisableBlend_BlendOptFlag = 0x4,
868 /**
869 * The coverage value does not have to be computed separately from
870 * alpha, the the output color can be the modulation of the two.
871 */
872 kCoverageAsAlpha_BlendOptFlag = 0x1,
873 /**
874 * Instead of emitting a src color, emit coverage in the alpha channel
875 * and r,g,b are "don't cares".
876 */
877 kEmitCoverage_BlendOptFlag = 0x10,
878 /**
879 * Emit transparent black instead of the src color, no need to compute
880 * coverage.
881 */
882 kEmitTransBlack_BlendOptFlag = 0x8,
883 };
884 GR_DECL_BITFIELD_OPS_FRIENDS(BlendOptFlags);
bsalomon@google.com471d4712011-08-23 15:45:25 +0000885
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000886 // Determines what optimizations can be applied based on the blend.
887 // The coeffecients may have to be tweaked in order for the optimization
888 // to work. srcCoeff and dstCoeff are optional params that receive the
889 // tweaked coeffecients.
890 // Normally the function looks at the current state to see if coverage
891 // is enabled. By setting forceCoverage the caller can speculatively
892 // determine the blend optimizations that would be used if there was
893 // partial pixel coverage
894 BlendOptFlags getBlendOpts(bool forceCoverage = false,
895 GrBlendCoeff* srcCoeff = NULL,
896 GrBlendCoeff* dstCoeff = NULL) const;
897
898 // determine if src alpha is guaranteed to be one for all src pixels
bsalomon@google.come79c8152012-03-29 19:07:12 +0000899 bool srcAlphaWillBeOne(GrVertexLayout vertexLayout) const;
bsalomon@google.com471d4712011-08-23 15:45:25 +0000900
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000901 enum GeometrySrcType {
902 kNone_GeometrySrcType, //<! src has not been specified
903 kReserved_GeometrySrcType, //<! src was set using reserve*Space
904 kArray_GeometrySrcType, //<! src was set using set*SourceToArray
905 kBuffer_GeometrySrcType //<! src was set using set*SourceToBuffer
906 };
rmistry@google.comd6176b02012-08-23 18:14:13 +0000907
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000908 struct GeometrySrcState {
909 GeometrySrcType fVertexSrc;
910 union {
911 // valid if src type is buffer
912 const GrVertexBuffer* fVertexBuffer;
913 // valid if src type is reserved or array
914 int fVertexCount;
915 };
rmistry@google.comd6176b02012-08-23 18:14:13 +0000916
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000917 GeometrySrcType fIndexSrc;
918 union {
919 // valid if src type is buffer
920 const GrIndexBuffer* fIndexBuffer;
921 // valid if src type is reserved or array
922 int fIndexCount;
923 };
rmistry@google.comd6176b02012-08-23 18:14:13 +0000924
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000925 GrVertexLayout fVertexLayout;
926 };
bsalomon@google.com934c5702012-03-20 21:17:58 +0000927
928 int indexCountInCurrentSource() const {
929 const GeometrySrcState& src = this->getGeomSrc();
930 switch (src.fIndexSrc) {
931 case kNone_GeometrySrcType:
932 return 0;
933 case kReserved_GeometrySrcType:
934 case kArray_GeometrySrcType:
935 return src.fIndexCount;
936 case kBuffer_GeometrySrcType:
937 return src.fIndexBuffer->sizeInBytes() / sizeof(uint16_t);
938 default:
939 GrCrash("Unexpected Index Source.");
940 return 0;
941 }
942 }
bsalomon@google.coma47a48d2011-04-26 20:22:11 +0000943
bsalomon@google.com08283af2012-10-26 13:01:20 +0000944 bool isStageEnabled(int stageIdx) const {
945 return this->getDrawState().isStageEnabled(stageIdx);
bsalomon@google.coma47a48d2011-04-26 20:22:11 +0000946 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000947
bsalomon@google.com97805382012-03-13 14:32:07 +0000948 // A sublcass can optionally overload this function to be notified before
949 // vertex and index space is reserved.
950 virtual void willReserveVertexAndIndexSpace(GrVertexLayout vertexLayout,
951 int vertexCount,
952 int indexCount) {}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000953
bsalomon@google.com97805382012-03-13 14:32:07 +0000954
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000955 // implemented by subclass to allocate space for reserved geom
956 virtual bool onReserveVertexSpace(GrVertexLayout vertexLayout,
957 int vertexCount,
958 void** vertices) = 0;
959 virtual bool onReserveIndexSpace(int indexCount, void** indices) = 0;
960 // implemented by subclass to handle release of reserved geom space
961 virtual void releaseReservedVertexSpace() = 0;
962 virtual void releaseReservedIndexSpace() = 0;
963 // subclass must consume array contents when set
964 virtual void onSetVertexSourceToArray(const void* vertexArray,
965 int vertexCount) = 0;
966 virtual void onSetIndexSourceToArray(const void* indexArray,
967 int indexCount) = 0;
968 // subclass is notified that geom source will be set away from an array
969 virtual void releaseVertexArray() = 0;
970 virtual void releaseIndexArray() = 0;
971 // subclass overrides to be notified just before geo src state
972 // is pushed/popped.
973 virtual void geometrySourceWillPush() = 0;
974 virtual void geometrySourceWillPop(const GeometrySrcState& restoredState) = 0;
975 // subclass called to perform drawing
976 virtual void onDrawIndexed(GrPrimitiveType type,
977 int startVertex,
978 int startIndex,
979 int vertexCount,
980 int indexCount) = 0;
981 virtual void onDrawNonIndexed(GrPrimitiveType type,
982 int startVertex,
983 int vertexCount) = 0;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000984 virtual void onStencilPath(const GrPath*, GrPathFill) = 0;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000985
bsalomon@google.comdea2f8d2011-08-01 15:51:05 +0000986 // subclass overrides to be notified when clip is set. Must call
987 // INHERITED::clipwillBeSet
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000988 virtual void clipWillBeSet(const GrClipData* clipData) {}
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000989
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000990 // Helpers for drawRect, protected so subclasses that override drawRect
991 // can use them.
bsalomon@google.come3d32162012-07-20 13:37:06 +0000992 static GrVertexLayout GetRectVertexLayout(const GrRect* srcRects[]);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000993
994 static void SetRectVertices(const GrRect& rect,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000995 const GrMatrix* matrix,
996 const GrRect* srcRects[],
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000997 const GrMatrix* srcMatrices[],
robertphillips@google.com8b129aa2012-10-05 15:37:00 +0000998 GrColor color,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000999 GrVertexLayout layout,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +00001000 void* vertices);
1001
bsalomon@google.come79c8152012-03-29 19:07:12 +00001002 // accessors for derived classes
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00001003 const GeometrySrcState& getGeomSrc() const {
1004 return fGeoSrcStateStack.back();
1005 }
bsalomon@google.come79c8152012-03-29 19:07:12 +00001006 // it is prefereable to call this rather than getGeomSrc()->fVertexLayout
1007 // because of the assert.
1008 GrVertexLayout getVertexLayout() const {
1009 // the vertex layout is only valid if a vertex source has been
1010 // specified.
1011 GrAssert(this->getGeomSrc().fVertexSrc != kNone_GeometrySrcType);
1012 return this->getGeomSrc().fVertexLayout;
1013 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001014
bsalomon@google.comf6601872012-08-28 21:11:35 +00001015 // allows derived class to set the caps
1016 CapsInternals* capsInternals() { return &fCaps.fInternals; }
1017
robertphillips@google.combeb1af72012-07-26 18:52:16 +00001018 const GrClipData* fClip;
reed@google.comac10a2d2010-12-22 21:39:39 +00001019
bsalomon@google.coma5d056a2012-03-27 15:59:58 +00001020 GrDrawState* fDrawState;
1021 GrDrawState fDefaultDrawState;
reed@google.comac10a2d2010-12-22 21:39:39 +00001022
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001023 Caps fCaps;
1024
bsalomon@google.com4a018bb2011-10-28 19:50:21 +00001025 // subclasses must call this in their destructors to ensure all vertex
rmistry@google.comd6176b02012-08-23 18:14:13 +00001026 // and index sources have been released (including those held by
bsalomon@google.com4a018bb2011-10-28 19:50:21 +00001027 // pushGeometrySource())
1028 void releaseGeometry();
bsalomon@google.come3d70952012-03-13 12:40:53 +00001029
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00001030private:
bsalomon@google.come3d70952012-03-13 12:40:53 +00001031 // helpers for reserving vertex and index space.
1032 bool reserveVertexSpace(GrVertexLayout vertexLayout,
1033 int vertexCount,
1034 void** vertices);
1035 bool reserveIndexSpace(int indexCount, void** indices);
rmistry@google.comd6176b02012-08-23 18:14:13 +00001036
bsalomon@google.come8262622011-11-07 02:30:51 +00001037 // called by drawIndexed and drawNonIndexed. Use a negative indexCount to
1038 // indicate non-indexed drawing.
1039 bool checkDraw(GrPrimitiveType type, int startVertex,
1040 int startIndex, int vertexCount,
1041 int indexCount) const;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00001042 // called when setting a new vert/idx source to unref prev vb/ib
1043 void releasePreviousVertexSource();
1044 void releasePreviousIndexSource();
rmistry@google.comd6176b02012-08-23 18:14:13 +00001045
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00001046 enum {
1047 kPreallocGeoSrcStateStackCnt = 4,
reed@google.comac10a2d2010-12-22 21:39:39 +00001048 };
rmistry@google.comd6176b02012-08-23 18:14:13 +00001049 SkSTArray<kPreallocGeoSrcStateStackCnt,
bsalomon@google.com92669012011-09-27 19:10:05 +00001050 GeometrySrcState, true> fGeoSrcStateStack;
reed@google.comfa35e3d2012-06-26 20:16:17 +00001051
1052 typedef GrRefCnt INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +00001053};
1054
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001055GR_MAKE_BITFIELD_OPS(GrDrawTarget::BlendOptFlags);
1056
reed@google.comac10a2d2010-12-22 21:39:39 +00001057#endif