blob: bf4b91d328ed5b4d458d84993a78b9c07e9b1fda [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
2 Copyright 2010 Google Inc.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
17
18#include "GrDrawTarget.h"
19#include "GrGpuVertex.h"
bsalomon@google.com86afc2a2011-02-16 16:12:19 +000020#include "GrTexture.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000021
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000022// recursive helper for creating mask with all the tex coord bits set for
23// one stage
24template <int N>
25static int stage_mask_recur(int stage) {
bsalomon@google.com5782d712011-01-21 21:03:59 +000026 return GrDrawTarget::StageTexCoordVertexLayoutBit(stage, N) |
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000027 stage_mask_recur<N+1>(stage);
28}
reed@google.comd728f6e2011-01-13 20:02:47 +000029template<> // linux build doesn't like static on specializations
30int stage_mask_recur<GrDrawTarget::kNumStages>(int) { return 0; }
reed@google.comac10a2d2010-12-22 21:39:39 +000031
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000032// mask of all tex coord indices for one stage
33static int stage_tex_coord_mask(int stage) {
34 return stage_mask_recur<0>(stage);
reed@google.comac10a2d2010-12-22 21:39:39 +000035}
36
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000037// mask of all bits relevant to one stage
38static int stage_mask(int stage) {
bsalomon@google.com5782d712011-01-21 21:03:59 +000039 return stage_tex_coord_mask(stage) |
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000040 GrDrawTarget::StagePosAsTexCoordVertexLayoutBit(stage);
41}
42
43// recursive helper for creating mask of with all bits set relevant to one
44// texture coordinate index
45template <int N>
46static int tex_coord_mask_recur(int texCoordIdx) {
bsalomon@google.com5782d712011-01-21 21:03:59 +000047 return GrDrawTarget::StageTexCoordVertexLayoutBit(N, texCoordIdx) |
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000048 tex_coord_mask_recur<N+1>(texCoordIdx);
49}
reed@google.comd728f6e2011-01-13 20:02:47 +000050template<> // linux build doesn't like static on specializations
51int tex_coord_mask_recur<GrDrawTarget::kMaxTexCoords>(int) { return 0; }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000052
53// mask of all bits relevant to one texture coordinate index
54static int tex_coord_idx_mask(int texCoordIdx) {
55 return tex_coord_mask_recur<0>(texCoordIdx);
56}
57
58bool check_layout(GrVertexLayout layout) {
59 // can only have 1 or 0 bits set for each stage.
60 for (int s = 0; s < GrDrawTarget::kNumStages; ++s) {
61 int stageBits = layout & stage_mask(s);
62 if (stageBits && !GrIsPow2(stageBits)) {
63 return false;
64 }
65 }
66 return true;
67}
68
69size_t GrDrawTarget::VertexSize(GrVertexLayout vertexLayout) {
70 GrAssert(check_layout(vertexLayout));
bsalomon@google.com5782d712011-01-21 21:03:59 +000071
72 size_t vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000073 sizeof(GrGpuTextVertex) :
74 sizeof(GrPoint);
75
76 size_t size = vecSize; // position
77 for (int t = 0; t < kMaxTexCoords; ++t) {
78 if (tex_coord_idx_mask(t) & vertexLayout) {
79 size += vecSize;
80 }
81 }
82 if (vertexLayout & kColor_VertexLayoutBit) {
83 size += sizeof(GrColor);
84 }
85 return size;
86}
87
88int GrDrawTarget::VertexStageCoordOffset(int stage, GrVertexLayout vertexLayout) {
89 GrAssert(check_layout(vertexLayout));
90 if (StagePosAsTexCoordVertexLayoutBit(stage) & vertexLayout) {
reed@google.comac10a2d2010-12-22 21:39:39 +000091 return 0;
92 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000093 int tcIdx = VertexTexCoordsForStage(stage, vertexLayout);
94 if (tcIdx >= 0) {
bsalomon@google.com5782d712011-01-21 21:03:59 +000095
96 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000097 sizeof(GrGpuTextVertex) :
98 sizeof(GrPoint);
99 int offset = vecSize; // position
100 // figure out how many tex coordinates are present and precede this one.
101 for (int t = 0; t < tcIdx; ++t) {
102 if (tex_coord_idx_mask(t) & vertexLayout) {
103 offset += vecSize;
104 }
105 }
106 return offset;
107 }
108
reed@google.comac10a2d2010-12-22 21:39:39 +0000109 return -1;
110}
111
112int GrDrawTarget::VertexColorOffset(GrVertexLayout vertexLayout) {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000113 GrAssert(check_layout(vertexLayout));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000114
reed@google.comac10a2d2010-12-22 21:39:39 +0000115 if (vertexLayout & kColor_VertexLayoutBit) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000116 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000117 sizeof(GrGpuTextVertex) :
118 sizeof(GrPoint);
119 int offset = vecSize; // position
120 // figure out how many tex coordinates are present and precede this one.
121 for (int t = 0; t < kMaxTexCoords; ++t) {
122 if (tex_coord_idx_mask(t) & vertexLayout) {
123 offset += vecSize;
124 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000125 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000126 return offset;
reed@google.comac10a2d2010-12-22 21:39:39 +0000127 }
128 return -1;
129}
130
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000131int GrDrawTarget::VertexSizeAndOffsetsByIdx(GrVertexLayout vertexLayout,
132 int texCoordOffsetsByIdx[kMaxTexCoords],
133 int* colorOffset) {
134 GrAssert(check_layout(vertexLayout));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000135
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000136 GrAssert(NULL != texCoordOffsetsByIdx);
reed@google.comac10a2d2010-12-22 21:39:39 +0000137 GrAssert(NULL != colorOffset);
138
bsalomon@google.com5782d712011-01-21 21:03:59 +0000139 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000140 sizeof(GrGpuTextVertex) :
141 sizeof(GrPoint);
142 int size = vecSize; // position
bsalomon@google.com5782d712011-01-21 21:03:59 +0000143
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000144 for (int t = 0; t < kMaxTexCoords; ++t) {
145 if (tex_coord_idx_mask(t) & vertexLayout) {
146 texCoordOffsetsByIdx[t] = size;
147 size += vecSize;
reed@google.comac10a2d2010-12-22 21:39:39 +0000148 } else {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000149 texCoordOffsetsByIdx[t] = -1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000150 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000151 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000152 if (kColor_VertexLayoutBit & vertexLayout) {
153 *colorOffset = size;
154 size += sizeof(GrColor);
155 } else {
156 *colorOffset = -1;
157 }
158 return size;
reed@google.comac10a2d2010-12-22 21:39:39 +0000159}
160
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000161int GrDrawTarget::VertexSizeAndOffsetsByStage(GrVertexLayout vertexLayout,
162 int texCoordOffsetsByStage[kNumStages],
163 int* colorOffset) {
164 GrAssert(check_layout(vertexLayout));
165
166 GrAssert(NULL != texCoordOffsetsByStage);
167 GrAssert(NULL != colorOffset);
bsalomon@google.com5782d712011-01-21 21:03:59 +0000168
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000169 int texCoordOffsetsByIdx[kMaxTexCoords];
bsalomon@google.com5782d712011-01-21 21:03:59 +0000170 int size = VertexSizeAndOffsetsByIdx(vertexLayout,
171 texCoordOffsetsByIdx,
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000172 colorOffset);
173 for (int s = 0; s < kNumStages; ++s) {
174 int tcIdx;
175 if (StagePosAsTexCoordVertexLayoutBit(s) & vertexLayout) {
176 texCoordOffsetsByStage[s] = 0;
177 } else if ((tcIdx = VertexTexCoordsForStage(s, vertexLayout)) >= 0) {
178 texCoordOffsetsByStage[s] = texCoordOffsetsByIdx[tcIdx];
179 } else {
180 texCoordOffsetsByStage[s] = -1;
181 }
182 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000183 return size;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000184}
185
186bool GrDrawTarget::VertexUsesStage(int stage, GrVertexLayout vertexLayout) {
187 GrAssert(stage < kNumStages);
188 GrAssert(check_layout(vertexLayout));
189 return !!(stage_mask(stage) & vertexLayout);
190}
191
bsalomon@google.com5782d712011-01-21 21:03:59 +0000192bool GrDrawTarget::VertexUsesTexCoordIdx(int coordIndex,
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000193 GrVertexLayout vertexLayout) {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000194 GrAssert(coordIndex < kMaxTexCoords);
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000195 GrAssert(check_layout(vertexLayout));
196 return !!(tex_coord_idx_mask(coordIndex) & vertexLayout);
197}
198
199int GrDrawTarget::VertexTexCoordsForStage(int stage, GrVertexLayout vertexLayout) {
200 GrAssert(stage < kNumStages);
201 GrAssert(check_layout(vertexLayout));
202 int bit = vertexLayout & stage_tex_coord_mask(stage);
203 if (bit) {
204 // figure out which set of texture coordates is used
205 // bits are ordered T0S0, T0S1, T0S2, ..., T1S0, T1S1, ...
206 // and start at bit 0.
207 GR_STATIC_ASSERT(sizeof(GrVertexLayout) <= sizeof(uint32_t));
208 return (32 - Gr_clz(bit) - 1) / kNumStages;
209 }
210 return -1;
211}
212
213void GrDrawTarget::VertexLayoutUnitTest() {
214 // not necessarily exhaustive
215 static bool run;
216 if (!run) {
217 run = true;
218 for (int s = 0; s < kNumStages; ++s) {
219
220 GrAssert(!VertexUsesStage(s, 0));
221 GrAssert(-1 == VertexStageCoordOffset(s, 0));
222 GrVertexLayout stageMask = 0;
223 for (int t = 0; t < kMaxTexCoords; ++t) {
224 stageMask |= StageTexCoordVertexLayoutBit(s,t);
225 }
bsalomon@google.com5782d712011-01-21 21:03:59 +0000226 GrAssert(1 == kMaxTexCoords || !check_layout(stageMask));
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000227 GrAssert(stage_tex_coord_mask(s) == stageMask);
228 stageMask |= StagePosAsTexCoordVertexLayoutBit(s);
229 GrAssert(stage_mask(s) == stageMask);
230 GrAssert(!check_layout(stageMask));
231 }
232 for (int t = 0; t < kMaxTexCoords; ++t) {
233 GrVertexLayout tcMask = 0;
234 GrAssert(!VertexUsesTexCoordIdx(t, 0));
235 for (int s = 0; s < kNumStages; ++s) {
236 tcMask |= StageTexCoordVertexLayoutBit(s,t);
237 GrAssert(VertexUsesStage(s, tcMask));
238 GrAssert(sizeof(GrPoint) == VertexStageCoordOffset(s, tcMask));
239 GrAssert(VertexUsesTexCoordIdx(t, tcMask));
240 GrAssert(2*sizeof(GrPoint) == VertexSize(tcMask));
241 GrAssert(t == VertexTexCoordsForStage(s, tcMask));
242 for (int s2 = s + 1; s2 < kNumStages; ++s2) {
243 GrAssert(-1 == VertexStageCoordOffset(s2, tcMask));
244 GrAssert(!VertexUsesStage(s2, tcMask));
245 GrAssert(-1 == VertexTexCoordsForStage(s2, tcMask));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000246
bsalomon@google.com19628322011-02-03 21:30:17 +0000247 #if GR_DEBUG
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000248 GrVertexLayout posAsTex = tcMask | StagePosAsTexCoordVertexLayoutBit(s2);
bsalomon@google.com19628322011-02-03 21:30:17 +0000249 #endif
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000250 GrAssert(0 == VertexStageCoordOffset(s2, posAsTex));
251 GrAssert(VertexUsesStage(s2, posAsTex));
252 GrAssert(2*sizeof(GrPoint) == VertexSize(posAsTex));
253 GrAssert(-1 == VertexTexCoordsForStage(s2, posAsTex));
254 }
bsalomon@google.com19628322011-02-03 21:30:17 +0000255 #if GR_DEBUG
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000256 GrVertexLayout withColor = tcMask | kColor_VertexLayoutBit;
bsalomon@google.com19628322011-02-03 21:30:17 +0000257 #endif
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000258 GrAssert(2*sizeof(GrPoint) == VertexColorOffset(withColor));
259 GrAssert(2*sizeof(GrPoint) + sizeof(GrColor) == VertexSize(withColor));
260 }
261 GrAssert(tex_coord_idx_mask(t) == tcMask);
262 GrAssert(check_layout(tcMask));
bsalomon@google.com5782d712011-01-21 21:03:59 +0000263
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000264 int stageOffsets[kNumStages];
265 int colorOffset;
266 int size;
267 size = VertexSizeAndOffsetsByStage(tcMask, stageOffsets, &colorOffset);
268 GrAssert(2*sizeof(GrPoint) == size);
269 GrAssert(-1 == colorOffset);
270 for (int s = 0; s < kNumStages; ++s) {
271 GrAssert(VertexUsesStage(s, tcMask));
272 GrAssert(sizeof(GrPoint) == stageOffsets[s]);
273 GrAssert(sizeof(GrPoint) == VertexStageCoordOffset(s, tcMask));
274 }
275 }
276 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000277}
278
279////////////////////////////////////////////////////////////////////////////////
280
281GrDrawTarget::GrDrawTarget() {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000282#if GR_DEBUG
283 VertexLayoutUnitTest();
284#endif
reed@google.comac10a2d2010-12-22 21:39:39 +0000285 fReservedGeometry.fLocked = false;
286#if GR_DEBUG
287 fReservedGeometry.fVertexCount = ~0;
288 fReservedGeometry.fIndexCount = ~0;
289#endif
290 fGeometrySrc.fVertexSrc = kReserved_GeometrySrcType;
291 fGeometrySrc.fIndexSrc = kReserved_GeometrySrcType;
292}
293
294void GrDrawTarget::setClip(const GrClip& clip) {
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000295 clipWillBeSet(clip);
reed@google.comac10a2d2010-12-22 21:39:39 +0000296 fClip = clip;
297}
298
299const GrClip& GrDrawTarget::getClip() const {
300 return fClip;
301}
302
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000303void GrDrawTarget::setTexture(int stage, GrTexture* tex) {
304 GrAssert(stage >= 0 && stage < kNumStages);
305 fCurrDrawState.fTextures[stage] = tex;
reed@google.comac10a2d2010-12-22 21:39:39 +0000306}
307
bsalomon@google.com5782d712011-01-21 21:03:59 +0000308const GrTexture* GrDrawTarget::getTexture(int stage) const {
309 GrAssert(stage >= 0 && stage < kNumStages);
310 return fCurrDrawState.fTextures[stage];
311}
312
313GrTexture* GrDrawTarget::getTexture(int stage) {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000314 GrAssert(stage >= 0 && stage < kNumStages);
315 return fCurrDrawState.fTextures[stage];
reed@google.comac10a2d2010-12-22 21:39:39 +0000316}
317
318void GrDrawTarget::setRenderTarget(GrRenderTarget* target) {
319 fCurrDrawState.fRenderTarget = target;
320}
321
bsalomon@google.com5782d712011-01-21 21:03:59 +0000322const GrRenderTarget* GrDrawTarget::getRenderTarget() const {
323 return fCurrDrawState.fRenderTarget;
324}
325
326GrRenderTarget* GrDrawTarget::getRenderTarget() {
reed@google.comac10a2d2010-12-22 21:39:39 +0000327 return fCurrDrawState.fRenderTarget;
328}
329
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000330void GrDrawTarget::setViewMatrix(const GrMatrix& m) {
331 fCurrDrawState.fViewMatrix = m;
reed@google.comac10a2d2010-12-22 21:39:39 +0000332}
333
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000334void GrDrawTarget::preConcatViewMatrix(const GrMatrix& matrix) {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000335 fCurrDrawState.fViewMatrix.preConcat(matrix);
336}
337
bsalomon@google.com5782d712011-01-21 21:03:59 +0000338const GrMatrix& GrDrawTarget::getViewMatrix() const {
339 return fCurrDrawState.fViewMatrix;
reed@google.comac10a2d2010-12-22 21:39:39 +0000340}
341
342bool GrDrawTarget::getViewInverse(GrMatrix* matrix) const {
bsalomon@google.com5782d712011-01-21 21:03:59 +0000343 // Mike: Can we cache this somewhere?
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000344 // Brian: Sure, do we use it often?
reed@google.comac10a2d2010-12-22 21:39:39 +0000345
346 GrMatrix inverse;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000347 if (fCurrDrawState.fViewMatrix.invert(&inverse)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000348 if (matrix) {
349 *matrix = inverse;
350 }
351 return true;
352 }
353 return false;
354}
355
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000356void GrDrawTarget::setSamplerState(int stage, const GrSamplerState& state) {
357 GrAssert(stage >= 0 && stage < kNumStages);
358 fCurrDrawState.fSamplerStates[stage] = state;
359}
360
reed@google.comac10a2d2010-12-22 21:39:39 +0000361void GrDrawTarget::enableState(uint32_t bits) {
362 fCurrDrawState.fFlagBits |= bits;
363}
364
365void GrDrawTarget::disableState(uint32_t bits) {
366 fCurrDrawState.fFlagBits &= ~(bits);
367}
368
bsalomon@google.comffca4002011-02-22 20:34:01 +0000369void GrDrawTarget::setBlendFunc(GrBlendCoeff srcCoef,
370 GrBlendCoeff dstCoef) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000371 fCurrDrawState.fSrcBlend = srcCoef;
372 fCurrDrawState.fDstBlend = dstCoef;
373}
374
375void GrDrawTarget::setColor(GrColor c) {
376 fCurrDrawState.fColor = c;
377}
378
379void GrDrawTarget::setAlpha(uint8_t a) {
380 this->setColor((a << 24) | (a << 16) | (a << 8) | a);
381}
382
383void GrDrawTarget::saveCurrentDrawState(SavedDrawState* state) const {
384 state->fState = fCurrDrawState;
385}
386
387void GrDrawTarget::restoreDrawState(const SavedDrawState& state) {
388 fCurrDrawState = state.fState;
389}
390
391void GrDrawTarget::copyDrawState(const GrDrawTarget& srcTarget) {
392 fCurrDrawState = srcTarget.fCurrDrawState;
393}
394
395
396bool GrDrawTarget::reserveAndLockGeometry(GrVertexLayout vertexLayout,
397 uint32_t vertexCount,
398 uint32_t indexCount,
399 void** vertices,
400 void** indices) {
401 GrAssert(!fReservedGeometry.fLocked);
402 fReservedGeometry.fVertexCount = vertexCount;
403 fReservedGeometry.fIndexCount = indexCount;
404
405 fReservedGeometry.fLocked = acquireGeometryHelper(vertexLayout,
406 vertices,
407 indices);
408 if (fReservedGeometry.fLocked) {
409 if (vertexCount) {
410 fGeometrySrc.fVertexSrc = kReserved_GeometrySrcType;
411 fGeometrySrc.fVertexLayout = vertexLayout;
412 }
413 if (indexCount) {
414 fGeometrySrc.fIndexSrc = kReserved_GeometrySrcType;
415 }
416 }
417 return fReservedGeometry.fLocked;
418}
419
420bool GrDrawTarget::geometryHints(GrVertexLayout vertexLayout,
421 int32_t* vertexCount,
422 int32_t* indexCount) const {
423 GrAssert(!fReservedGeometry.fLocked);
424 if (NULL != vertexCount) {
425 *vertexCount = -1;
426 }
427 if (NULL != indexCount) {
428 *indexCount = -1;
429 }
430 return false;
431}
432
433void GrDrawTarget::releaseReservedGeometry() {
434 GrAssert(fReservedGeometry.fLocked);
435 releaseGeometryHelper();
436 fReservedGeometry.fLocked = false;
437}
438
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000439void GrDrawTarget::setVertexSourceToArray(GrVertexLayout vertexLayout,
440 const void* vertexArray,
441 int vertexCount) {
442 fGeometrySrc.fVertexSrc = kArray_GeometrySrcType;
reed@google.comac10a2d2010-12-22 21:39:39 +0000443 fGeometrySrc.fVertexLayout = vertexLayout;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000444 setVertexSourceToArrayHelper(vertexArray, vertexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000445}
446
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000447void GrDrawTarget::setIndexSourceToArray(const void* indexArray,
448 int indexCount) {
449 fGeometrySrc.fIndexSrc = kArray_GeometrySrcType;
450 setIndexSourceToArrayHelper(indexArray, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000451}
452
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000453void GrDrawTarget::setVertexSourceToBuffer(GrVertexLayout vertexLayout,
454 const GrVertexBuffer* buffer) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000455 fGeometrySrc.fVertexSrc = kBuffer_GeometrySrcType;
456 fGeometrySrc.fVertexBuffer = buffer;
457 fGeometrySrc.fVertexLayout = vertexLayout;
458}
459
460void GrDrawTarget::setIndexSourceToBuffer(const GrIndexBuffer* buffer) {
461 fGeometrySrc.fIndexSrc = kBuffer_GeometrySrcType;
462 fGeometrySrc.fIndexBuffer = buffer;
463}
464
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000465///////////////////////////////////////////////////////////////////////////////
466
467bool GrDrawTarget::canDisableBlend() const {
468 if ((kOne_BlendCoeff == fCurrDrawState.fSrcBlend) &&
469 (kZero_BlendCoeff == fCurrDrawState.fDstBlend)) {
470 return true;
471 }
472
473 // If we have vertex color without alpha then we can't force blend off
474 if ((fGeometrySrc.fVertexLayout & kColor_VertexLayoutBit) ||
475 0xff != GrColorUnpackA(fCurrDrawState.fColor)) {
476 return false;
477 }
478
479 // If the src coef will always be 1...
480 if (kSA_BlendCoeff != fCurrDrawState.fSrcBlend &&
481 kOne_BlendCoeff != fCurrDrawState.fSrcBlend) {
482 return false;
483 }
484
485 // ...and the dst coef is always 0...
486 if (kISA_BlendCoeff != fCurrDrawState.fDstBlend &&
487 kZero_BlendCoeff != fCurrDrawState.fDstBlend) {
488 return false;
489 }
490
491 // ...and there isn't a texture with an alpha channel...
492 for (int s = 0; s < kNumStages; ++s) {
493 if (VertexUsesStage(s, fGeometrySrc.fVertexLayout)) {
494 GrAssert(NULL != fCurrDrawState.fTextures[s]);
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000495 GrPixelConfig config = fCurrDrawState.fTextures[s]->config();
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000496
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000497 if (kRGB_565_GrPixelConfig != config &&
498 kRGBX_8888_GrPixelConfig != config) {
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000499 return false;
500 }
501 }
502 }
503
504 // ...then we disable blend.
505 return true;
506}
507///////////////////////////////////////////////////////////////////////////////
508void GrDrawTarget::drawRect(const GrRect& rect,
509 const GrMatrix* matrix,
bsalomon@google.comffca4002011-02-22 20:34:01 +0000510 StageBitfield stageEnableBitfield,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000511 const GrRect* srcRects[],
512 const GrMatrix* srcMatrices[]) {
bsalomon@google.comffca4002011-02-22 20:34:01 +0000513 GrVertexLayout layout = GetRectVertexLayout(stageEnableBitfield, srcRects);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000514
515 AutoReleaseGeometry geo(this, layout, 4, 0);
516
517 SetRectVertices(rect, matrix, srcRects,
518 srcMatrices, layout, geo.vertices());
519
520 drawNonIndexed(kTriangleFan_PrimitiveType, 0, 4);
521}
522
bsalomon@google.comffca4002011-02-22 20:34:01 +0000523GrVertexLayout GrDrawTarget::GetRectVertexLayout(StageBitfield stageEnableBitfield,
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000524 const GrRect* srcRects[]) {
525 GrVertexLayout layout = 0;
526
527 for (int i = 0; i < kNumStages; ++i) {
528 int numTC = 0;
bsalomon@google.comffca4002011-02-22 20:34:01 +0000529 if (stageEnableBitfield & (1 << i)) {
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000530 if (NULL != srcRects && NULL != srcRects[i]) {
531 layout |= StageTexCoordVertexLayoutBit(i, numTC);
532 ++numTC;
533 } else {
534 layout |= StagePosAsTexCoordVertexLayoutBit(i);
535 }
536 }
537 }
538 return layout;
539}
540void GrDrawTarget::SetRectVertices(const GrRect& rect,
541 const GrMatrix* matrix,
542 const GrRect* srcRects[],
543 const GrMatrix* srcMatrices[],
544 GrVertexLayout layout,
545 void* vertices) {
546#if GR_DEBUG
547 // check that the layout and srcRects agree
548 for (int i = 0; i < kNumStages; ++i) {
549 if (VertexTexCoordsForStage(i, layout) >= 0) {
550 GR_DEBUGASSERT(NULL != srcRects && NULL != srcRects[i]);
551 } else {
552 GR_DEBUGASSERT(NULL == srcRects || NULL == srcRects[i]);
553 }
554 }
555#endif
556
557 int stageOffsets[kNumStages];
558 int colorOffset;
559 int vsize = VertexSizeAndOffsetsByStage(layout, stageOffsets, &colorOffset);
560 GrAssert(-1 == colorOffset);
561
562 GrTCast<GrPoint*>(vertices)->setRectFan(rect.fLeft, rect.fTop,
563 rect.fRight, rect.fBottom,
564 vsize);
565 if (NULL != matrix) {
566 matrix->mapPointsWithStride(GrTCast<GrPoint*>(vertices), vsize, 4);
567 }
568
569 for (int i = 0; i < kNumStages; ++i) {
570 if (stageOffsets[i] > 0) {
571 GrPoint* coords = GrTCast<GrPoint*>(GrTCast<intptr_t>(vertices) +
572 stageOffsets[i]);
573 coords->setRectFan(srcRects[i]->fLeft, srcRects[i]->fTop,
574 srcRects[i]->fRight, srcRects[i]->fBottom,
575 vsize);
576 if (NULL != srcMatrices && NULL != srcMatrices[i]) {
577 srcMatrices[i]->mapPointsWithStride(coords, vsize, 4);
578 }
579 }
580 }
581}
582
583///////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000584
585GrDrawTarget::AutoStateRestore::AutoStateRestore(GrDrawTarget* target) {
586 fDrawTarget = target;
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000587 if (NULL != fDrawTarget) {
588 fDrawTarget->saveCurrentDrawState(&fDrawState);
589 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000590}
591
592GrDrawTarget::AutoStateRestore::~AutoStateRestore() {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000593 if (NULL != fDrawTarget) {
594 fDrawTarget->restoreDrawState(fDrawState);
595 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000596}
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000597