HomeSort by relevance Sort by last modified time
    Searched full:vertexcount (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/skia/src/gpu/
GrInOrderDrawBuffer.cpp 191 int vertexCount,
194 if (!vertexCount || !indexCount) {
206 draw.fVertexCount = vertexCount;
226 size_t vertexBytes = (vertexCount + startVertex) *
260 int vertexCount) {
261 if (!vertexCount) {
273 draw.fVertexCount = vertexCount;
293 size_t vertexBytes = (vertexCount + startVertex) *
422 int* vertexCount,
438 if (NULL != vertexCount) {
    [all...]
GrInOrderDrawBuffer.h 89 int* vertexCount,
119 int vertexCount,
123 int vertexCount);
125 int vertexCount,
131 int vertexCount);
GrDrawTarget.cpp 527 int vertexCount,
531 if (vertexCount > 0) {
537 vertexCount,
542 geoSrc.fVertexCount = vertexCount;
572 int32_t* vertexCount,
574 if (NULL != vertexCount) {
575 *vertexCount = -1;
631 int vertexCount) {
636 geoSrc.fVertexCount = vertexCount;
637 this->onSetVertexSourceToArray(vertexArray, vertexCount);
    [all...]
GrDrawTarget.h 299 * if vertexCount > 0, *vertices will be the array
313 * @param vertexLayout the format of vertices (ignored if vertexCount == 0).
314 * @param vertexCount the number of vertices to reserve space for. Can be 0.
315 * @param vertices will point to reserved vertex space if vertexCount is
316 * non-zero. Illegal to pass NULL if vertexCount > 0.
322 int vertexCount,
358 * @param vertexCount in: hint about how many vertices the caller would
372 int* vertexCount,
381 * @param vertexCount the number of vertices in the array.
385 int vertexCount);
    [all...]
GrBufferAllocPool.cpp 374 int vertexCount,
378 GrAssert(vertexCount >= 0);
385 void* ptr = INHERITED::makeSpace(vSize * vertexCount,
397 int vertexCount,
401 void* space = makeSpace(layout, vertexCount, buffer, startVertex);
405 GrDrawTarget::VertexSize(layout) * vertexCount);
GrGpu.cpp 774 int vertexCount,
784 fStats.fVertexCnt += vertexCount;
791 setupGeometry(&sVertex, &sIndex, vertexCount, indexCount);
794 vertexCount, indexCount);
799 int vertexCount) {
806 fStats.fVertexCnt += vertexCount;
811 setupGeometry(&sVertex, NULL, vertexCount, 0);
813 this->onGpuDrawNonIndexed(type, sVertex, vertexCount);
853 int vertexCount,
857 GrAssert(vertexCount > 0)
    [all...]
GrGpu.h 382 int vertexCount,
388 int vertexCount);
424 uint32_t vertexCount,
428 uint32_t vertexCount,
456 int vertexCount,
527 int vertexCount,
531 int vertexCount);
GrBufferAllocPool.h 226 * @param vertexCount number of vertices to allocate space for
234 int vertexCount,
242 int vertexCount,
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
IndexBuffer.java 52 * @param vertexCount The amount of vertices to contain
57 public static IndexBuffer createIndexBuffer(int vertexCount, int indexCount){
58 if (vertexCount > 65535){
  /packages/screensavers/Basic/src/com/android/dreams/basic/
ColorsGLRenderer.java 343 private final int vertexCount = squareCoords.length / COORDS_PER_VERTEX;
346 private float cornerFrequencies[] = new float[vertexCount];
356 for (int i=0; i<vertexCount; i++) {
359 cornerRotation = (int)(Math.random() * vertexCount);
369 bb = ByteBuffer.allocateDirect(vertexCount * colorStride);
412 for(int i=0; i<vertexCount; i++) {
414 _tmphsv[0] = HUES[(i + cornerRotation) % vertexCount];
430 glDrawArrays(GL_TRIANGLE_FAN, 0, vertexCount);
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 234 int vertexCount = input.capacity() / 3;
235 for (int i = 0; i < vertexCount; i++){
258 int vertexCount = input.capacity() / 2;
270 for (int i = 0; i < vertexCount; i++){
320 int vertexCount = input.capacity() / 3;
321 for (int i = 0; i < vertexCount; i++){
  /external/skia/src/utils/
SkProxyCanvas.cpp 136 void SkProxyCanvas::drawVertices(VertexMode vmode, int vertexCount,
141 fProxy->drawVertices(vmode, vertexCount, vertices, texs, colors,
SkNWayCanvas.cpp 262 void SkNWayCanvas::drawVertices(VertexMode vmode, int vertexCount,
269 iter->drawVertices(vmode, vertexCount, vertices, texs, colors, xmode,
  /external/skia/src/gpu/gl/
GrGpuGLShaders.h 35 int vertexCount,
GrGpuGL.h 138 uint32_t vertexCount,
141 uint32_t vertexCount,
  /external/skia/src/pipe/
SkGPipeWrite.cpp 125 virtual void drawVertices(VertexMode, int vertexCount,
589 void SkGPipeCanvas::drawVertices(VertexMode mode, int vertexCount,
594 if (0 == vertexCount) {
599 size_t size = 4 + vertexCount * sizeof(SkPoint);
604 size += vertexCount * sizeof(SkPoint);
608 size += vertexCount * sizeof(SkColor);
618 fWriter.write32(vertexCount);
619 fWriter.write(vertices, vertexCount * sizeof(SkPoint));
621 fWriter.write(texs, vertexCount * sizeof(SkPoint));
624 fWriter.write(colors, vertexCount * sizeof(SkColor))
    [all...]
SkGPipeRead.cpp 251 int vertexCount = reader->readU32();
252 const SkPoint* verts = skip<SkPoint>(reader, vertexCount);
256 texs = skip<SkPoint>(reader, vertexCount);
261 colors = skip<SkColor>(reader, vertexCount);
274 canvas->drawVertices(mode, vertexCount, verts, texs, colors, xfer,
  /external/skia/include/utils/
SkNWayCanvas.h 65 virtual void drawVertices(VertexMode vmode, int vertexCount,
SkDumpCanvas.h 102 virtual void drawVertices(VertexMode vmode, int vertexCount,
SkProxyCanvas.h 70 virtual void drawVertices(VertexMode vmode, int vertexCount,
  /external/webkit/Source/WebCore/platform/graphics/android/context/
RecordingContextCanvasProxy.h 88 virtual void drawVertices(VertexMode, int vertexCount,
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
InstrumentedPlatformCanvas.h 269 virtual void drawVertices(VertexMode mode, int vertexCount,
276 SkCanvas::drawVertices(mode, vertexCount, vertices, texs,
  /frameworks/base/core/java/android/view/
GLES20RecordingCanvas.java 296 public void drawVertices(VertexMode mode, int vertexCount, float[] verts, int vertOffset,
299 super.drawVertices(mode, vertexCount, verts, vertOffset, texs, texOffset, colors,
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshLoader.java 288 private void startSharedGeom(String vertexcount) throws SAXException {
290 vertCount = parseInt(vertexcount);
297 private void startGeometry(String vertexcount) throws SAXException {
298 vertCount = parseInt(vertexcount);
635 String count = attribs.getValue("vertexcount");
657 String count = attribs.getValue("vertexcount");
  /external/skia/src/core/
SkPictureRecord.cpp 446 void SkPictureRecord::drawVertices(VertexMode vmode, int vertexCount,
466 addInt(vertexCount);
467 addPoints(vertices, vertexCount);
469 addPoints(texs, vertexCount);
472 fWriter.writeMul4(colors, vertexCount * sizeof(SkColor));

Completed in 415 milliseconds

1 2 3