Searched refs:fVertices (Results 1 – 9 of 9) sorted by relevance
/external/skia/src/gpu/ |
D | GrVertices.h | 135 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
|
/external/skia/src/gpu/batches/ |
D | GrVertexBatch.cpp | 39 fVertices.initInstanced(primType, vertexBuffer, indexBuffer, in init() 46 SkASSERT(fVertices.instanceCount()); in recordDraw() 47 target->draw(fVertices); in recordDraw()
|
D | GrVertexBatch.h | 44 GrVertices fVertices;
|
/external/skia/bench/ |
D | GLVertexAttributesBench.cpp | 57 SkTArray<unsigned char> fVertices; member in GLVertexAttributesBench 175 fVertices.reset(static_cast<int>(kVerticesPerTri * kNumTri * fStride)); in setup() 177 unsigned char* ptr = &fVertices[static_cast<int>(i * kVerticesPerTri * fStride)]; in setup() 229 GR_GL_CALL(gl, BufferData(GR_GL_ARRAY_BUFFER, fVertices.count(), fVertices.begin(), in glDraw()
|
/external/skia/src/gpu/text/ |
D | GrAtlasTextBlob_regenInBatch.cpp | 214 intptr_t vertex = reinterpret_cast<intptr_t>(fVertices); in regenInBatch() 320 *vertices = fVertices + info.vertexStartIndex(); in regenInBatch()
|
D | GrAtlasTextBlob.cpp | 38 cacheBlob->fVertices = sizeof(GrAtlasTextBlob) + reinterpret_cast<unsigned char*>(cacheBlob); in Create() 39 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount); in Create() 101 intptr_t vertex = reinterpret_cast<intptr_t>(this->fVertices + subRun->vertexEndIndex()); in appendGlyph()
|
D | GrAtlasTextBlob.h | 532 unsigned char* fVertices; variable
|
/external/skia/tools/debugger/ |
D | SkDrawCommand.h | 610 SkPoint* fVertices; variable
|
D | SkDrawCommand.cpp | 2921 fVertices = new SkPoint[vertexCount]; in SkDrawVerticesCommand() 2922 memcpy(fVertices, vertices, vertexCount * sizeof(SkPoint)); in SkDrawVerticesCommand() 2959 delete [] fVertices; in ~SkDrawVerticesCommand() 2967 canvas->drawVertices(fVmode, fVertexCount, fVertices, in execute()
|