diff options
author | Michael Bien <[email protected]> | 2010-05-02 22:55:02 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-05-02 22:55:02 +0200 |
commit | 3b3dc4591d3690f61b9488ed74e7c9248def1fd5 (patch) | |
tree | c7c30c0a51d9a1dc22e9c52bb239b1ea96df3b07 /src/com/jogamp/opencl/BuildProgramCallback.java | |
parent | 59148a192446ddfefb13516d7ada72e6fa1661c7 (diff) |
CLBuildListener functionality for high level bindings.
- uses low level BuildProgramCallback internally
- updated tests, testing async builds
Diffstat (limited to 'src/com/jogamp/opencl/BuildProgramCallback.java')
-rw-r--r-- | src/com/jogamp/opencl/BuildProgramCallback.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/com/jogamp/opencl/BuildProgramCallback.java b/src/com/jogamp/opencl/BuildProgramCallback.java deleted file mode 100644 index c37891ec..00000000 --- a/src/com/jogamp/opencl/BuildProgramCallback.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.jogamp.opencl; - -/** - * A callback an application can register to be called when the program executable - * has been built (successfully or unsuccessfully).<br/> - * Note1: registering a build callback can make {@link CL#clBuildProgram} non blocking (OpenCL implementation dependent).<br/> - * Note2: the thread which calls this method is unspecified. The Application should ensure propper synchronization. - * @author Michael Bien - * @see CL#clBuildProgram(long, int, com.jogamp.common.nio.PointerBuffer, java.lang.String, com.jogamp.opencl.BuildProgramCallback) - */ -public interface BuildProgramCallback { - - /** - * Called when the program executable - * has been built (successfully or unsuccessfully). - */ - public void buildFinished(long cl_program); - -} |