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

  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
BatchNode.java 375 VertexBuffer.Format[] formatForBuf = new VertexBuffer.Format[compsForBuf.length];
414 formatForBuf[vb.getBufferType().ordinal()] = vb.getFormat();
429 formatForBuf[VertexBuffer.Type.Index.ordinal()] = VertexBuffer.Format.UnsignedInt;
431 formatForBuf[VertexBuffer.Type.Index.ordinal()] = VertexBuffer.Format.UnsignedShort;
442 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalTris);
444 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalVerts);
448 vb.setupData(VertexBuffer.Usage.Dynamic, compsForBuf[i], formatForBuf[i], data);
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
GeometryBatchFactory.java 98 Format[] formatForBuf = new Format[compsForBuf.length];
135 formatForBuf[vb.getBufferType().ordinal()] = vb.getFormat();
150 formatForBuf[Type.Index.ordinal()] = Format.UnsignedInt;
152 formatForBuf[Type.Index.ordinal()] = Format.UnsignedShort;
163 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalTris);
165 data = VertexBuffer.createBuffer(formatForBuf[i], compsForBuf[i], totalVerts);
169 vb.setupData(Usage.Static, compsForBuf[i], formatForBuf[i], data);

Completed in 156 milliseconds