Home
last modified time | relevance | path

Searched refs:fIndexCount (Results 1 – 10 of 10) sorted by relevance

/external/skia/gpu/src/
DGrDrawMesh.cpp4 GrMesh::GrMesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {} in GrMesh()
25 fIndexCount = src.fIndexCount; in operator =()
26 fIndices = new uint16_t[fIndexCount]; in operator =()
27 memcpy(fIndices, src.fIndices, fIndexCount * sizeof(uint16_t)); in operator =()
46 fIndexCount = rows * cols * 6; in init()
47 fIndices = new uint16_t[fIndexCount]; in init()
82 fPts, fTex, NULL, NULL, fIndices, fIndexCount, in draw()
DGrInOrderDrawBuffer.cpp150 GrAssert(0 == lastDraw.fIndexCount % 6); in drawRect()
162 lastDraw.fIndexCount += 6; in drawRect()
199 draw.fIndexCount = indexCount; in drawIndexed()
262 draw.fIndexCount = 0; in drawNonIndexed()
385 if (draw.fIndexCount) { in playback()
389 if (draw.fIndexCount) { in playback()
394 draw.fIndexCount); in playback()
457 if (fReservedGeometry.fIndexCount) { in onAcquireGeometry()
462 *indices = fIndexPool.makeSpace(fReservedGeometry.fIndexCount, in onAcquireGeometry()
510 GrAssert(!fReservedGeometry.fLocked || !fReservedGeometry.fIndexCount); in onSetIndexSourceToArray()
DGrGpu.cpp674 if (fReservedGeometry.fIndexCount) { in onAcquireGeometry()
679 *indices = fIndexPool->makeSpace(fReservedGeometry.fIndexCount, in onAcquireGeometry()
708 GrAssert(!fReservedGeometry.fLocked || !fReservedGeometry.fIndexCount); in onSetIndexSourceToArray()
DGrDrawTarget.cpp292 fReservedGeometry.fIndexCount = ~0; in GrDrawTarget()
440 fReservedGeometry.fIndexCount = indexCount; in reserveAndLockGeometry()
/external/skia/samplecode/
DSampleWarp.cpp230 int fIndexCount; member in Mesh
233 Mesh::Mesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {} in Mesh()
254 fIndexCount = src.fIndexCount; in operator =()
255 fIndices = new uint16_t[fIndexCount]; in operator =()
256 memcpy(fIndices, src.fIndices, fIndexCount * sizeof(uint16_t)); in operator =()
275 fIndexCount = rows * cols * 6; in init()
276 fIndices = new uint16_t[fIndexCount]; in init()
311 fPts, fTex, NULL, NULL, fIndices, fIndexCount, in draw()
317 fPts, NULL, NULL, NULL, fIndices, fIndexCount, in drawWireframe()
/external/skia/src/utils/
DSkMeshUtils.cpp20 fTexCount = fIndexCount = 0; in init()
30 fIndexCount = rows * cols * 6; in init()
37 fIndexCount * sizeof(uint16_t)); in init()
/external/skia/include/utils/
DSkMeshUtils.h23 size_t indexCount() const { return fIndexCount; } in indexCount()
30 size_t fIndexCount, fTexCount;
/external/skia/gpu/include/
DGrMesh.h38 int fIndexCount; variable
DGrInOrderDrawBuffer.h112 int fIndexCount; member
DGrDrawTarget.h1176 uint32_t fIndexCount; member