(int size)
| 2383 | |
| 2384 | |
| 2385 | protected static ShortBuffer allocateDirectShortBuffer(int size) { |
| 2386 | int bytes = PApplet.max(MIN_DIRECT_BUFFER_SIZE, size) * SIZEOF_SHORT; |
| 2387 | return ByteBuffer.allocateDirect(bytes).order(ByteOrder.nativeOrder()). |
| 2388 | asShortBuffer(); |
| 2389 | } |
| 2390 | |
| 2391 | |
| 2392 | protected static ShortBuffer allocateShortBuffer(int size) { |
no test coverage detected