Home
last modified time | relevance | path

Searched refs:fVertices (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/gpu/
DGrVertices.h135 fVertices = &vertices; in init()
160 int instances = SkTMin(fInstancesRemaining, fVertices->fMaxInstancesPerDraw); in next()
161 fInstanceBatch.fIndexCount = instances * fVertices->fIndicesPerInstance; in next()
162 fInstanceBatch.fVertexCount = instances * fVertices->fVerticesPerInstance; in next()
168 const GrVertices* fVertices; variable
DGrBatch.h126 SkASSERT(fVertices.instanceCount()); in issueDraw()
127 batchTarget->draw(fVertices); in issueDraw()
130 GrVertices fVertices;
DGrTextBlobCache.cpp29 cacheBlob->fVertices = sizeof(BitmapTextBlob) + reinterpret_cast<unsigned char*>(cacheBlob); in createBlob()
30 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount); in createBlob()
DGrBatch.cpp70 fVertices.initInstanced(primType, vertexBuffer, indexBuffer, in init()
DGrAtlasTextContext.h195 unsigned char* fVertices; member
DGrAtlasTextContext.cpp1374 intptr_t vertex = reinterpret_cast<intptr_t>(blob->fVertices + subRun->fVertexEndIndex); in appendGlyphCommon()
1673 intptr_t vertex = reinterpret_cast<intptr_t>(blob->fVertices); in generateGeometry()
1682 intptr_t vertex = reinterpret_cast<intptr_t>(blob->fVertices); in generateGeometry()
1689 intptr_t vertex = reinterpret_cast<intptr_t>(blob->fVertices); in generateGeometry()
1720 memcpy(currVertex, blob->fVertices + info.fVertexStartIndex, byteCount); in generateGeometry()
/external/skia/src/utils/debugger/
DSkDrawCommand.cpp800 fVertices = new SkPoint[vertexCount]; in SkDrawVerticesCommand()
801 memcpy(fVertices, vertices, vertexCount * sizeof(SkPoint)); in SkDrawVerticesCommand()
838 delete [] fVertices; in ~SkDrawVerticesCommand()
846 canvas->drawVertices(fVmode, fVertexCount, fVertices, in execute()
DSkDrawCommand.h550 SkPoint* fVertices; variable