OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fIndexCount
(Results
1 - 4
of
4
) sorted by null
/external/skia/gpu/include/
GrMesh.h
38
int
fIndexCount
;
GrInOrderDrawBuffer.h
112
int
fIndexCount
;
/external/skia/include/utils/
SkMeshUtils.h
23
size_t indexCount() const { return
fIndexCount
; }
30
size_t
fIndexCount
, fTexCount;
/external/skia/samplecode/
SampleWarp.cpp
230
int
fIndexCount
;
233
Mesh::Mesh() : fPts(NULL), fCount(0), fIndices(NULL),
fIndexCount
(0) {}
254
fIndexCount
= src.
fIndexCount
;
255
fIndices = new uint16_t[
fIndexCount
];
256
memcpy(fIndices, src.fIndices,
fIndexCount
* sizeof(uint16_t));
275
fIndexCount
= rows * cols * 6;
276
fIndices = new uint16_t[
fIndexCount
];
311
fPts, fTex, NULL, NULL, fIndices,
fIndexCount
,
317
fPts, NULL, NULL, NULL, fIndices,
fIndexCount
,
[
all
...]
Completed in 26 milliseconds