(int size)
| 2566 | |
| 2567 | |
| 2568 | protected static FloatBuffer allocateDirectFloatBuffer(int size) { |
| 2569 | int bytes = PApplet.max(MIN_DIRECT_BUFFER_SIZE, size) * SIZEOF_FLOAT; |
| 2570 | return ByteBuffer.allocateDirect(bytes).order(ByteOrder.nativeOrder()). |
| 2571 | asFloatBuffer(); |
| 2572 | } |
| 2573 | |
| 2574 | |
| 2575 | protected static FloatBuffer allocateFloatBuffer(int size) { |
no test coverage detected