org.jocl
Interface BuildProgramFunction


public interface BuildProgramFunction

Emulation of a function pointer for functions that may be passed to the clBuildProgram method.

See Also:
CL.clBuildProgram(cl_program, int, cl_device_id[], String, BuildProgramFunction, Object)

Method Summary
 void function(cl_program program, java.lang.Object user_data)
          The function that will be called.
 

Method Detail

function

void function(cl_program program,
              java.lang.Object user_data)
The function that will be called.

Parameters:
program - The program.
user_data - The user data.