(ByteBuffer buffer)
| 120 | // --- [ API utilities - Safe ] --- |
| 121 | |
| 122 | public static long getAddressSafe(ByteBuffer buffer) { |
| 123 | return org.lwjgl3.system.MemoryUtil.memAddressSafe(buffer); |
| 124 | } |
| 125 | |
| 126 | public static long getAddressSafe(ByteBuffer buffer, int position) { |
| 127 | return buffer == null ? 0L : getAddress(buffer, position); |
nothing calls this directly
no test coverage detected