Lines Matching refs:verts
59 void* verts,
293 void* verts = target->makeVertexSpace(vertexStride, fVertexCount, &vertexBuffer, &firstVertex); in drawVolatile() local
294 if (!verts) { in drawVolatile()
314 verts, in drawVolatile()
362 void* verts = vertexBuffer ? vertexBuffer->map() : nullptr; in drawNonVolatile() local
363 if (!verts) { in drawNonVolatile()
384 verts, in drawNonVolatile()
405 void* verts, in fillBuffers() argument
441 V* v = (V*)verts; in fillBuffers()
451 verts = v + vertexCount; in fillBuffers()
469 mesh.fViewMatrix.mapPoints(((SkPoint*)verts), &positions[j], 1); in fillBuffers()
471 *((SkPoint*)verts) = positions[j]; in fillBuffers()
475 *(uint32_t*)((intptr_t)verts + kColorOffset) = colors[j]; in fillBuffers()
477 *(uint32_t*)((intptr_t)verts + kColorOffset) = color; in fillBuffers()
482 *(SkPoint*)((intptr_t)verts + localCoordOffset) = localCoords[j]; in fillBuffers()
484 *(SkPoint*)((intptr_t)verts + localCoordOffset) = positions[j]; in fillBuffers()
487 verts = (void*)((intptr_t)verts + vertexStride); in fillBuffers()