Home
last modified time | relevance | path

Searched refs:fVertices (Results 1 – 9 of 9) 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
/external/skia/src/gpu/batches/
DGrVertexBatch.cpp39 fVertices.initInstanced(primType, vertexBuffer, indexBuffer, in init()
46 SkASSERT(fVertices.instanceCount()); in recordDraw()
47 target->draw(fVertices); in recordDraw()
DGrVertexBatch.h44 GrVertices fVertices;
/external/skia/bench/
DGLVertexAttributesBench.cpp57 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/
DGrAtlasTextBlob_regenInBatch.cpp214 intptr_t vertex = reinterpret_cast<intptr_t>(fVertices); in regenInBatch()
320 *vertices = fVertices + info.vertexStartIndex(); in regenInBatch()
DGrAtlasTextBlob.cpp38 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()
DGrAtlasTextBlob.h532 unsigned char* fVertices; variable
/external/skia/tools/debugger/
DSkDrawCommand.h610 SkPoint* fVertices; variable
DSkDrawCommand.cpp2921 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()