1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrContext_impl_DEFINED
#define GrContext_impl_DEFINED
template <typename POS_SRC, typename TEX_SRC,
typename COL_SRC, typename IDX_SRC>
inline void GrContext::drawCustomVertices(const GrPaint& paint,
GrPrimitiveType primitiveType,
const POS_SRC& posSrc,
const TEX_SRC* texCoordSrc,
const COL_SRC* colorSrc,
const IDX_SRC* idxSrc) {
GrDrawTarget::AutoReleaseGeometry geo;
GrDrawTarget* target = this->prepareToDraw(paint, kUnbuffered_DrawCategory);
bool hasTexCoords[GrPaint::kTotalStages] = {
NULL != texCoordSrc, // texCoordSrc provides explicit stage 0 coords
0 // remaining stages use positions
};
GrVertexLayout layout = PaintStageVertexLayoutBits(paint, hasTexCoords);
if (NULL != colorSrc) {
layout |= GrDrawTarget::kColor_VertexLayoutBit;
}
int vertexCount = posSrc.count();
int indexCount = (NULL != idxSrc) ? idxSrc->count() : 0;
if (!geo.set(target, layout, vertexCount, indexCount)) {
GrPrintf("Failed to get space for vertices!");
return;
}
int texOffsets[GrDrawTarget::kMaxTexCoords];
int colorOffset;
int vsize = GrDrawTarget::VertexSizeAndOffsetsByIdx(layout,
texOffsets,
&colorOffset);
void* curVertex = geo.vertices();
for (int i = 0; i < vertexCount; ++i) {
posSrc.writeValue(i, (GrPoint*)curVertex);
if (texOffsets[0] > 0) {
texCoordSrc->writeValue(i, (GrPoint*)((intptr_t)curVertex + texOffsets[0]));
}
if (colorOffset > 0) {
colorSrc->writeValue(i, (GrColor*)((intptr_t)curVertex + colorOffset));
}
curVertex = (void*)((intptr_t)curVertex + vsize);
}
uint16_t* indices = (uint16_t*) geo.indices();
for (int i = 0; i < indexCount; ++i) {
idxSrc->writeValue(i, indices + i);
}
// we don't currently apply offscreen AA to this path. Need improved
// management of GrDrawTarget's geometry to avoid copying points per-tile.
if (NULL == idxSrc) {
target->drawNonIndexed(primitiveType, 0, vertexCount);
} else {
target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
}
}
class GrNullTexCoordSource {
public:
void writeValue(int i, GrPoint* dstCoord) const { GrAssert(false); }
};
class GrNullColorSource {
public:
void writeValue(int i, GrColor* dstColor) const { GrAssert(false); }
};
class GrNullIndexSource {
public:
void writeValue(int i, uint16_t* dstIndex) const { GrAssert(false); }
int count() const { GrAssert(false); return 0; }
};
template <typename POS_SRC>
inline void GrContext::drawCustomVertices(const GrPaint& paint,
GrPrimitiveType primitiveType,
const POS_SRC& posSrc) {
this->drawCustomVertices<POS_SRC,
GrNullTexCoordSource,
GrNullColorSource,
GrNullIndexSource>(paint, primitiveType, posSrc,
NULL, NULL, NULL);
}
template <typename POS_SRC, typename TEX_SRC>
inline void GrContext::drawCustomVertices(const GrPaint& paint,
GrPrimitiveType primitiveType,
const POS_SRC& posSrc,
const TEX_SRC* texCoordSrc) {
this->drawCustomVertices<POS_SRC, TEX_SRC,
GrNullColorSource,
GrNullIndexSource>(paint, primitiveType, posSrc,
texCoordSrc, NULL, NULL);
}
template <typename POS_SRC, typename TEX_SRC, typename COL_SRC>
inline void GrContext::drawCustomVertices(const GrPaint& paint,
GrPrimitiveType primitiveType,
const POS_SRC& posSrc,
const TEX_SRC* texCoordSrc,
const COL_SRC* colorSrc) {
drawCustomVertices<POS_SRC, TEX_SRC, COL_SRC,
GrNullIndexSource>(paint, primitiveType, posSrc,
texCoordSrc, colorSrc, NULL);
}
#endif
|