Package com.jogamp.opengl.util
Interface SyncAction
-
public interface SyncActionSpecific data synchronization action implemented by the data provider to update the buffer with the underlying data before usage, e.g. uploading theGLUniformDatadata to the GPU.Example: Invoked before delivering
GLUniformData's data viagetObject()orgetBuffer().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsync()Synchronizes the buffer with the underlying data before usage.
-
-
-
Method Detail
-
sync
void sync()
Synchronizes the buffer with the underlying data before usage.Example:
GLUniformDataissues this method before delivering data viagetObject()orgetBuffer().
-
-