Package com.jme3.util
Class PrimitiveAllocator
java.lang.Object
com.jme3.util.PrimitiveAllocator
- All Implemented Interfaces:
BufferAllocator
This class contains a primitive allocator with no special logic, should work
on any jvm
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionallocate
(int size) Allocate a direct ByteBuffer of the specified size.void
destroyDirectBuffer
(Buffer toBeDestroyed) De-allocate a direct buffer.
-
Constructor Details
-
PrimitiveAllocator
public PrimitiveAllocator()
-
-
Method Details
-
destroyDirectBuffer
De-allocate a direct buffer.- Specified by:
destroyDirectBuffer
in interfaceBufferAllocator
- Parameters:
toBeDestroyed
- ignored
-
allocate
Allocate a direct ByteBuffer of the specified size.- Specified by:
allocate
in interfaceBufferAllocator
- Parameters:
size
- in bytes (≥0)- Returns:
- a new direct buffer
-