HomeSort by relevance Sort by last modified time
    Searched defs:idxCount (Results 1 - 3 of 3) sorted by null

  /frameworks/base/graphics/java/android/renderscript/
Mesh.java 155 int idxCount = mRS.nMeshGetIndexCount(getID(mRS));
158 int[] idxIDs = new int[idxCount];
159 int[] primitives = new int[idxCount];
162 mRS.nMeshGetIndices(getID(mRS), idxIDs, primitives, idxCount);
165 mIndexBuffers = new Allocation[idxCount];
166 mPrimitives = new Primitive[idxCount];
175 for(int i = 0; i < idxCount; i ++) {
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
NinePatchTexture.java 347 int idxCount = 1;
351 --idxCount;
371 index[idxCount] = index[idxCount - 1];
372 ++idxCount;
373 index[idxCount++] = (byte) k;
377 index[idxCount++] = (byte) k;
378 index[idxCount++] = (byte) (k + nx);
382 mIdxCount = idxCount;
391 mIndexBuffer.put(index, 0, idxCount).position(0)
    [all...]
  /frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp     [all...]

Completed in 2944 milliseconds