Package icyllis.arc3d.engine
Class CpuBuffer
java.lang.Object
icyllis.arc3d.core.RefCnt
icyllis.arc3d.engine.CpuBuffer
- All Implemented Interfaces:
RefCounted
A client-side buffer represents an immutable block of native CPU memory.
This is only used as "staging buffers" in OpenGL and may not be used for other purposes.
-
Method Summary
Modifier and TypeMethodDescriptionlong
data()
protected void
Override this method to invoke de-allocation of the underlying resource.static @SharedPtr CpuBuffer
make
(long size) long
size()
Size of the buffer in bytes.
-
Method Details
-
make
-
size
public long size()Size of the buffer in bytes. -
data
public long data() -
deallocate
protected void deallocate()Description copied from class:RefCnt
Override this method to invoke de-allocation of the underlying resource.- Specified by:
deallocate
in classRefCnt
-