(int size)
| 534 | } |
| 535 | |
| 536 | private static FloatBuffer nextFloatBuffer(int size) |
| 537 | { |
| 538 | ByteBuffer bytebuffer = bigBuffer; |
| 539 | int i = bytebuffer.limit(); |
| 540 | bytebuffer.position(i).limit(i + size * 4); |
| 541 | return bytebuffer.asFloatBuffer(); |
| 542 | } |
| 543 | |
| 544 | private static IntBuffer[] nextIntBufferArray(int count, int size) |
| 545 | { |