diff options
Diffstat (limited to 'src/com/jogamp/opencl/impl/CLEventCallback.java')
-rw-r--r-- | src/com/jogamp/opencl/impl/CLEventCallback.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/com/jogamp/opencl/impl/CLEventCallback.java b/src/com/jogamp/opencl/impl/CLEventCallback.java new file mode 100644 index 00000000..db4d5b35 --- /dev/null +++ b/src/com/jogamp/opencl/impl/CLEventCallback.java @@ -0,0 +1,15 @@ +/* + * Created on Tuesday, July 06 2010 00:46 + */ + +package com.jogamp.opencl.impl; + +/** + * A callback for a specific command execution status. + * @author Michael Bien + */ +public interface CLEventCallback { + + public void eventStateChanged(long event, int status); + +} |