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

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ArmatureModifier.java 279 ByteBuffer indicesData = BufferUtils.createByteBuffer(vertexListSize * MAXIMUM_WEIGHTS_PER_VERTEX);
311 indicesData.put(index * MAXIMUM_WEIGHTS_PER_VERTEX + weightIndex, boneIndex.byteValue());
319 indicesData.put(index * MAXIMUM_WEIGHTS_PER_VERTEX, (byte) 0);
335 indicesData.put(index * MAXIMUM_WEIGHTS_PER_VERTEX, (byte) 0);
345 verticesWeightsIndices.setupData(Usage.CpuOnly, bonesGroups[0], Format.UnsignedByte, indicesData);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshLoader.java 98 private ByteBuffer indicesData;
141 indicesData = null;
317 indicesData = null;
356 indicesData = null;
374 indicesData = BufferUtils.createByteBuffer(vertCount * 4);
378 indicesData = ByteBuffer.allocate(vertCount * 4);
386 indices.setupData(usage, 4, Format.UnsignedByte, indicesData);
585 indicesData.put(i, bone);

Completed in 53 milliseconds