/external/skia/gpu/include/ |
GrContext_impl.h | 57 int vertexCount = posSrc.count(); 60 if (!geo.set(target, layout, vertexCount, indexCount)) { 72 for (int i = 0; i < vertexCount; ++i) { 96 b.setBounds(geo.positions(), vertexCount); 105 target->drawNonIndexed(primitiveType, 0, vertexCount); 107 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
|
GrInOrderDrawBuffer.h | 87 int vertexCount, 91 int vertexCount); 100 int* vertexCount, 133 int vertexCount);
|
GrDrawTarget.h | 640 * if vertexCount is nonzero, *vertices will be the array 664 * @param vertexCount the number of vertices to reserve space for. Can be 0. 666 * @param vertexLayout the format of vertices (ignored if vertexCount == 0). 667 * @param vertices will point to reserved vertex space if vertexCount is 668 * non-zero. Illegal to pass NULL if vertexCount > 0. 676 uint32_t vertexCount, 689 * @param vertexCount in: hint about how many vertices the caller would 703 int* vertexCount, 717 * @param vertexCount the number of vertices in the array. 721 int vertexCount); [all...] |
GrGpu.h | 262 int vertexCount, 267 int vertexCount); 424 int vertexCount); 455 uint32_t vertexCount, 459 uint32_t vertexCount, 475 int vertexCount,
|
/external/skia/gpu/src/ |
GrInOrderDrawBuffer.cpp | 185 int vertexCount, 188 if (!vertexCount || !indexCount) { 198 draw.fVertexCount = vertexCount; 217 size_t vertexBytes = (vertexCount + startVertex) * 250 int vertexCount) { 251 if (!vertexCount) { 261 draw.fVertexCount = vertexCount; 280 size_t vertexBytes = (vertexCount + startVertex) * 409 int* vertexCount, 425 if (NULL != vertexCount) { [all...] |
GrBufferAllocPool.cpp | 340 int vertexCount, 344 GrAssert(vertexCount >= 0); 351 void* ptr = INHERITED::makeSpace(vSize * vertexCount, 363 int vertexCount, 367 void* space = makeSpace(layout, vertexCount, buffer, startVertex); 371 GrDrawTarget::VertexSize(layout) * vertexCount);
|
GrDrawTarget.cpp | 434 uint32_t vertexCount, 439 fReservedGeometry.fVertexCount = vertexCount; 446 if (vertexCount) { 462 int32_t* vertexCount, 465 if (NULL != vertexCount) { 466 *vertexCount = -1; 482 int vertexCount) { 485 this->onSetVertexSourceToArray(vertexArray, vertexCount);
|
GrGpuGLFixed.h | 34 int vertexCount,
|
GrGpuGLShaders.h | 41 int vertexCount,
|
GrGpu.cpp | 572 int vertexCount, 586 fStats.fVertexCnt += vertexCount; 593 setupGeometry(&sVertex, &sIndex, vertexCount, indexCount); 596 vertexCount, indexCount); 601 int vertexCount) { 611 fStats.fVertexCnt += vertexCount; 616 setupGeometry(&sVertex, NULL, vertexCount, 0); 618 this->onDrawNonIndexed(type, sVertex, vertexCount); 693 void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) { 700 vertexCount, [all...] |
GrGpuGL.h | 97 uint32_t vertexCount, 100 uint32_t vertexCount,
|
GrBufferAllocPool.h | 229 * @param vertexCount number of vertices to allocate space for 237 int vertexCount, 245 int vertexCount,
|
GrContext.cpp | [all...] |
/external/skia/src/utils/ |
SkProxyCanvas.cpp | 133 void SkProxyCanvas::drawVertices(VertexMode vmode, int vertexCount, 138 fProxy->drawVertices(vmode, vertexCount, vertices, texs, colors,
|
SkNWayCanvas.cpp | 258 void SkNWayCanvas::drawVertices(VertexMode vmode, int vertexCount, 265 iter->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode,
|
/external/skia/src/pipe/ |
SkGPipeWrite.cpp | 129 virtual void drawVertices(VertexMode, int vertexCount, 617 void SkGPipeCanvas::drawVertices(VertexMode mode, int vertexCount, 622 if (0 == vertexCount) { 627 size_t size = 4 + vertexCount * sizeof(SkPoint); 632 size += vertexCount * sizeof(SkPoint); 636 size += vertexCount * sizeof(SkColor); 646 fWriter.write32(vertexCount); 647 fWriter.write(vertices, vertexCount * sizeof(SkPoint)); 649 fWriter.write(texs, vertexCount * sizeof(SkPoint)); 652 fWriter.write(colors, vertexCount * sizeof(SkColor)) [all...] |
SkGPipeRead.cpp | 268 int vertexCount = reader->readU32(); 269 const SkPoint* verts = skip<SkPoint>(reader, vertexCount); 273 texs = skip<SkPoint>(reader, vertexCount); 278 colors = skip<SkColor>(reader, vertexCount); 291 canvas->drawVertices(mode, vertexCount, verts, texs, colors, xfer,
|
/external/skia/include/utils/ |
SkNWayCanvas.h | 61 virtual void drawVertices(VertexMode vmode, int vertexCount,
|
SkDumpCanvas.h | 101 virtual void drawVertices(VertexMode vmode, int vertexCount,
|
SkProxyCanvas.h | 68 virtual void drawVertices(VertexMode vmode, int vertexCount,
|
/external/skia/src/core/ |
SkDevice.cpp | 214 int vertexCount, 219 draw.drawVertices(vmode, vertexCount, verts, textures, colors, xmode,
|
SkPictureRecord.cpp | 385 void SkPictureRecord::drawVertices(VertexMode vmode, int vertexCount, 405 addInt(vertexCount); 406 addPoints(vertices, vertexCount); 408 addPoints(texs, vertexCount); 411 fWriter.writeMul4(colors, vertexCount * sizeof(SkColor));
|
SkPictureRecord.h | 55 virtual void drawVertices(VertexMode, int vertexCount,
|
/frameworks/base/core/java/android/view/ |
GLES20RecordingCanvas.java | 300 public void drawVertices(VertexMode mode, int vertexCount, float[] verts, int vertOffset, 303 super.drawVertices(mode, vertexCount, verts, vertOffset, texs, texOffset, colors,
|
/external/skia/include/gpu/ |
SkGpuDevice.h | 106 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
|