Searched defs:numIndices (Results 1 - 11 of 11) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
H A DVirtualIndexBuffer.java25 protected int numIndices = 0; field in class:VirtualIndexBuffer
33 numIndices = numVerts;
36 numIndices = (numVerts - 1) * 2 + 1;
39 numIndices = (numVerts - 1) * 2;
42 numIndices = numVerts;
45 numIndices = (numVerts - 2) * 3;
48 numIndices = (numVerts - 2) * 3;
51 numIndices = numVerts;
98 return numIndices;
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DPrimitiveGroup.java46 public int numIndices; field in class:PrimitiveGroup
62 return getTypeString() + " : " + numIndices;
69 int[] stripLengths = new int[numIndices];
73 for ( int i =0; i < numIndices; i++) {
86 sb.append("Strip:").append(numIndices).append("\n");
99 if ( indices.length == numIndices )
101 int[] nind = new int[numIndices];
102 System.arraycopy(indices,0,nind,0,numIndices);
H A DStripifier.java126 int numIndices = indices.size();
127 faceInfos.reserve(numIndices / 3);
134 int numTriangles = numIndices / 3;
293 int numIndices = indices.size();
295 int v0 = indices.get(numIndices - 2);
296 int v1 = indices.get(numIndices - 1);
532 static boolean nextIsCW(int numIndices) { argument
533 return ((numIndices % 2) == 0);
/external/deqp/modules/glshared/
H A DglsShaderPerformanceMeasurer.cpp101 int numIndices = gridSizeX * gridSizeY * numIndicesPerQuad; local
102 dst.resize(numIndices);
261 GLsizei numIndices = (GLsizei)getNumIndices(m_gridSizeX, m_gridSizeY);
266 gl.drawElements(GL_TRIANGLES, numIndices, GL_UNSIGNED_SHORT, DE_NULL);
H A DglsRandomShaderCase.cpp206 int numIndices = numQuads*6; local
207 m_indices.resize(numIndices);
/external/skia/src/gpu/
H A DGrAAConvexTessellator.h44 int numIndices() const { return fIndices.count(); } function in class:GrAAConvexTessellator
H A DGrRecordReplaceDraw.cpp65 const unsigned* opIndices, int numIndices)
75 fOpIndexStack.append(numIndices, opIndices);
59 ReplaceDraw(SkCanvas* canvas, GrLayerCache* layerCache, SkPicture const* const drawablePicts[], int drawableCount, const SkPicture* topLevelPicture, const SkPicture* picture, const SkMatrix& initialMatrix, SkPicture::AbortCallback* callback, const unsigned* opIndices, int numIndices) argument
/external/deqp/framework/opengl/
H A DgluDrawUtil.cpp128 IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices);
373 IndexBuffer::IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices) argument
380 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, numIndices*getIndexSize(indexType), indices, usage);
/external/deqp/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp446 int numIndices = getNumIndices(); local
448 DE_ASSERT(numIndices > 0);
450 DE_ASSERT(m_endWithRestart || getIndex(numIndices-1) != restartIndex); // We don't want restarts at end unless the case is a special case.
453 for (int i = 1; i < numIndices; i++)
556 int numIndices = getNumIndices(); local
557 for (int i = 0; i < numIndices; i++)
602 int numIndices = getNumIndices(); local
604 DE_ASSERT(numIndices >= 0);
608 for (int indexArrayNdx = 0; indexArrayNdx <= numIndices; indexArrayNdx++) // \note Goes one "too far" in order to detect end of array as well.
610 if (indexArrayNdx >= numIndices || getInde
[all...]
H A Des3fFragmentOutputTests.cpp557 const int numIndices = numQuads*6; local
562 vector<deUint16> indices (numIndices);
816 gl.drawElements(GL_TRIANGLES, numIndices, GL_UNSIGNED_SHORT, &indices[0]);
/external/deqp/modules/gles31/functional/
H A Des31fOpaqueTypeIndexingTests.cpp95 static void uploadUniformIndices (const glw::Functions& gl, deUint32 program, const char* varPrefix, int numIndices, const int* indices) argument
97 for (int varNdx = 0; varNdx < numIndices; varNdx++)

Completed in 243 milliseconds