Searched refs:fIndexCount (Results 1 – 10 of 10) sorted by relevance
/external/skia/gpu/src/ |
D | GrDrawMesh.cpp | 4 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()
|
D | GrInOrderDrawBuffer.cpp | 150 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()
|
D | GrGpu.cpp | 674 if (fReservedGeometry.fIndexCount) { in onAcquireGeometry() 679 *indices = fIndexPool->makeSpace(fReservedGeometry.fIndexCount, in onAcquireGeometry() 708 GrAssert(!fReservedGeometry.fLocked || !fReservedGeometry.fIndexCount); in onSetIndexSourceToArray()
|
D | GrDrawTarget.cpp | 292 fReservedGeometry.fIndexCount = ~0; in GrDrawTarget() 440 fReservedGeometry.fIndexCount = indexCount; in reserveAndLockGeometry()
|
/external/skia/samplecode/ |
D | SampleWarp.cpp | 230 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/ |
D | SkMeshUtils.cpp | 20 fTexCount = fIndexCount = 0; in init() 30 fIndexCount = rows * cols * 6; in init() 37 fIndexCount * sizeof(uint16_t)); in init()
|
/external/skia/include/utils/ |
D | SkMeshUtils.h | 23 size_t indexCount() const { return fIndexCount; } in indexCount() 30 size_t fIndexCount, fTexCount;
|
/external/skia/gpu/include/ |
D | GrMesh.h | 38 int fIndexCount; variable
|
D | GrInOrderDrawBuffer.h | 112 int fIndexCount; member
|
D | GrDrawTarget.h | 1176 uint32_t fIndexCount; member
|