com.jogamp.opencl.llb.impl
Interface BuildProgramCallback


public interface BuildProgramCallback

A callback an application can register to be called when the program executable has been built (successfully or unsuccessfully).
Note1: registering a build callback can make CLProgramBinding.clBuildProgram(long, int, com.jogamp.common.nio.PointerBuffer, java.lang.String, com.jogamp.opencl.llb.impl.BuildProgramCallback) non blocking (OpenCL implementation dependent).
Note2: the thread which calls this method is unspecified. The Application should ensure proper synchronization.

Author:
Michael Bien
See Also:
CLProgramBinding.clBuildProgram(long, int, com.jogamp.common.nio.PointerBuffer, java.lang.String, com.jogamp.opencl.llb.impl.BuildProgramCallback)

Method Summary
 void buildFinished(long cl_program)
          Called when the program executable has been built (successfully or unsuccessfully).
 

Method Detail

buildFinished

void buildFinished(long cl_program)
Called when the program executable has been built (successfully or unsuccessfully).