Home | History | Annotate | Download | only in scene

Lines Matching refs:setBuffer

276             clone.setBuffer(newPos);
282 clone.setBuffer(newNorm);
288 clone.setBuffer(newTang);
319 setBuffer(bindPos);
332 setBuffer(bindNorm);
343 setBuffer(bindTangents);
866 public void setBuffer(VertexBuffer vb){
902 public void setBuffer(Type type, int components, Format format, Buffer buf){
907 setBuffer(vb);
929 public void setBuffer(Type type, int components, FloatBuffer buf) {
930 setBuffer(type, components, Format.Float, buf);
933 public void setBuffer(Type type, int components, float[] buf){
934 setBuffer(type, components, BufferUtils.createFloatBuffer(buf));
937 setBuffer(Type type, int components, IntBuffer buf) {
938 setBuffer(type, components, Format.UnsignedInt, buf);
941 public void setBuffer(Type type, int components, int[] buf){
942 setBuffer(type, components, BufferUtils.createIntBuffer(buf));
945 public void setBuffer(Type type, int components, ShortBuffer buf) {
946 setBuffer(type, components, Format.UnsignedShort, buf);
949 public void setBuffer(Type type, int components, byte[] buf){
950 setBuffer(type, components, BufferUtils.createByteBuffer(buf));
953 public void setBuffer(Type type, int components, ByteBuffer buf) {
954 setBuffer(type, components, Format.UnsignedByte, buf);
957 public void setBuffer(Type type, int components, short[] buf){
958 setBuffer(type, components, BufferUtils.createShortBuffer(buf));
1121 setBuffer(newIdxBuf);
1150 setBuffer(newVb);