Home | History | Annotate | Download | only in core

Lines Matching refs:vertexCount

712 void SkPictureRecord::onDrawVertices(VertexMode vmode, int vertexCount,
735 size_t size = 5 * kUInt32Size + vertexCount * sizeof(SkPoint);
737 size += vertexCount * sizeof(SkPoint); // + uvs
740 size += vertexCount * sizeof(SkColor); // + vert colors
755 this->addInt(vertexCount);
756 this->addPoints(vertices, vertexCount);
758 this->addPoints(texs, vertexCount);
761 fWriter.writeMul4(colors, vertexCount * sizeof(SkColor));