Searched refs:outVb (Results 1 – 2 of 2) sorted by relevance
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
D | TriangleCollector.java | 146 VertexBuffer outVb = new VertexBuffer(vb.getBufferType()); in gatherTris() local 147 outVb.setNormalized(vb.isNormalized()); in gatherTris() 148 outVb.setupData(vb.getUsage(), vb.getNumComponents(), vb.getFormat(), b); in gatherTris() 149 out.setBuffer(outVb); in gatherTris() 199 VertexBuffer outVb = out.getBuffer(vb.getBufferType()); in gatherTris() local 207 vb.copyElement(vertIndicies[v], outVb, newIndices[v]); in gatherTris()
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
D | VertexBuffer.java | 766 public void copyElement(int inIndex, VertexBuffer outVb, int outIndex){ in copyElement() argument 767 copyElements(inIndex, outVb, outIndex, 1); in copyElement() 782 public void copyElements(int inIndex, VertexBuffer outVb, int outIndex, int len){ in copyElements() argument 783 if (outVb.format != format || outVb.components != components) in copyElements() 800 outVb.data.clear(); in copyElements() 807 ByteBuffer bout = (ByteBuffer) outVb.data; in copyElements() 815 ShortBuffer sout = (ShortBuffer) outVb.data; in copyElements() 823 IntBuffer iout = (IntBuffer) outVb.data; in copyElements() 830 FloatBuffer fout = (FloatBuffer) outVb.data; in copyElements() 841 outVb.data.clear(); in copyElements()
|