Login  Register

Re: Freeing a direct NIO buffer with CLinker.freeMemory() causes a double free or corruption

Posted by gouessej on Mar 01, 2023; 2:37pm
URL: https://forum.jogamp.org/Freeing-a-direct-NIO-buffer-with-CLinker-freeMemory-causes-a-double-free-or-corruption-tp4042228p4042253.html

I don't plan to use OpenCL yet, an OpenGL compute shader would be enough to perform some computations on the GPU.

Yes, such management could be done in com.jogamp.common.nio.Buffers.newDirectByteBuffer(final int numElements) {
    return nativeOrder(directByteBufferAllocator.apply(Integer.valueOf(numElements)));
}

private static Function<Integer, ByteBuffer> directByteBufferAllocator = ByteBuffer::allocateDirect;

public static void setDirectByteBufferAllocator(final Function<Integer, ByteBuffer> directByteBufferAllocator) {
    Buffers.directByteBufferAllocator = Objects.requireNonNull(directByteBufferAllocator);
}

Another solution would consist of duplicating many calls to accept java.lang.foreign.MemorySegment instead of java.nio.Buffer but it's too early to do that.
Julien Gouesse | Personal blog | Website