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

  /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/rs/
rs.h 37 void rsaMeshGetIndexCount(RsContext, RsMesh, int32_t *idxCount);
rsMesh.cpp 268 RsAllocation * idx, size_t idxCount,
270 rsAssert(idxCount == primTypeCount);
271 Mesh *sm = new Mesh(rsc, vtxCount, idxCount);
278 for (uint32_t i = 0; i < idxCount; i ++) {
  /frameworks/base/rs/java/android/renderscript/
Mesh.java 154 int idxCount = mRS.nMeshGetIndexCount(getID(mRS));
157 long[] idxIDs = new long[idxCount];
158 int[] primitives = new int[idxCount];
161 mRS.nMeshGetIndices(getID(mRS), idxIDs, primitives, idxCount);
164 mIndexBuffers = new Allocation[idxCount];
165 mPrimitives = new Primitive[idxCount];
174 for(int i = 0; i < idxCount; i ++) {
  /frameworks/base/rs/jni/
android_renderscript_RenderScript.cpp     [all...]

Completed in 131 milliseconds