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

  /frameworks/rs/
rsMesh.h 48 // indexBuffers[i] could be NULL, in which case only primitives[i] is used
49 Allocation **indexBuffers;
74 mHal.state.indexBuffers[index] = idx;
rsMesh.cpp 28 mHal.state.indexBuffers = NULL;
45 mHal.state.indexBuffers = new Allocation *[mHal.state.indexBuffersCount];
50 mHal.state.indexBuffers[i] = NULL;
69 delete[] mHal.state.indexBuffers;
99 if (mHal.state.indexBuffers[pCount]) {
101 mHal.state.indexBuffers[pCount]->serialize(stream);
131 ObjectBaseRef<Allocation> *indexBuffers = NULL;
134 indexBuffers = new ObjectBaseRef<Allocation>[primitivesCount];
145 indexBuffers[pCount].set(indexAlloc);
156 mesh->setPrimitive(indexBuffers[pCount].get(), primitives[pCount], pCount)
    [all...]
  /frameworks/compile/libbcc/lib/ScriptCRT/
rs_structs.h 246 // indexBuffers[i] could be NULL, in which case only primitives[i] is used
247 void **indexBuffers;
  /frameworks/base/graphics/java/android/renderscript/
Mesh.java 357 Allocation[] indexBuffers = new Allocation[mIndexTypes.size()];
381 indexBuffers[ct] = alloc;
391 newMesh.mIndexBuffers = indexBuffers;
512 Allocation[] indexBuffers = new Allocation[mIndexTypes.size()];
525 indexBuffers[ct] = entry.a;
535 newMesh.mIndexBuffers = indexBuffers;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
CurvesHelper.java 416 IntBuffer[] indexBuffers = new IntBuffer[bevelObject.size()];
475 IntBuffer indexBuffer = indexBuffers[geomIndex];
485 indexBuffers[geomIndex] = indexBuffer;
504 int[] allIndices = BufferUtils.getIntArray(indexBuffers[geomIndex]);
525 mesh.setBuffer(Type.Index, 3, indexBuffers[i]);

Completed in 496 milliseconds