(int size)
| 2624 | |
| 2625 | |
| 2626 | protected static FloatBuffer allocateDirectFloatBuffer(int size) { |
| 2627 | int bytes = PApplet.max(MIN_DIRECT_BUFFER_SIZE, size) * SIZEOF_FLOAT; |
| 2628 | return ByteBuffer.allocateDirect(bytes).order(ByteOrder.nativeOrder()).asFloatBuffer(); |
| 2629 | } |
| 2630 | |
| 2631 | |
| 2632 | protected static FloatBuffer allocateFloatBuffer(int size) { |
no test coverage detected