Package | Description |
---|---|
org.lwjgl.opencl |
Modifier and Type | Method and Description |
---|---|
static CLProgram |
CL10.clCreateProgramWithBinary(CLContext context,
CLDevice device,
ByteBuffer binary,
IntBuffer binary_status,
IntBuffer errcode_ret) |
static CLProgram |
CL10.clCreateProgramWithBinary(CLContext context,
PointerBuffer device_list,
ByteBuffer[] binaries,
IntBuffer binary_status,
IntBuffer errcode_ret)
Overloads clCreateProgramWithBinary.
|
static CLProgram |
CL10.clCreateProgramWithBinary(CLContext context,
PointerBuffer device_list,
PointerBuffer lengths,
ByteBuffer binaries,
IntBuffer binary_status,
IntBuffer errcode_ret)
Overloads clCreateProgramWithBinary.
|
static CLProgram |
CL10.clCreateProgramWithSource(CLContext context,
ByteBuffer[] strings,
IntBuffer errcode_ret)
Overloads clCreateProgramWithSource.
|
static CLProgram |
CL10.clCreateProgramWithSource(CLContext context,
ByteBuffer string,
IntBuffer errcode_ret) |
static CLProgram |
CL10.clCreateProgramWithSource(CLContext context,
ByteBuffer strings,
PointerBuffer lengths,
IntBuffer errcode_ret)
Overloads clCreateProgramWithSource.
|
static CLProgram |
CL10.clCreateProgramWithSource(CLContext context,
CharSequence[] strings,
IntBuffer errcode_ret)
Overloads clCreateProgramWithSource.
|
static CLProgram |
CL10.clCreateProgramWithSource(CLContext context,
CharSequence string,
IntBuffer errcode_ret)
Overloads clCreateProgramWithSource.
|
CLProgram |
CLContext.getCLProgram(long id)
Returns a CLProgram associated with this context.
|
Modifier and Type | Method and Description |
---|---|
static int |
CL10.clBuildProgram(CLProgram program,
CLDevice device,
CharSequence options,
CLBuildProgramCallback pfn_notify)
Overloads clBuildProgram.
|
static int |
CL10.clBuildProgram(CLProgram program,
PointerBuffer device_list,
ByteBuffer options,
CLBuildProgramCallback pfn_notify) |
static int |
CL10.clBuildProgram(CLProgram program,
PointerBuffer device_list,
CharSequence options,
CLBuildProgramCallback pfn_notify)
Overloads clBuildProgram.
|
static CLKernel |
CL10.clCreateKernel(CLProgram program,
ByteBuffer kernel_name,
IntBuffer errcode_ret) |
static CLKernel |
CL10.clCreateKernel(CLProgram program,
CharSequence kernel_name,
IntBuffer errcode_ret)
Overloads clCreateKernel.
|
static int |
CL10.clCreateKernelsInProgram(CLProgram program,
PointerBuffer kernels,
IntBuffer num_kernels_ret) |
static int |
CL10.clGetProgramBuildInfo(CLProgram program,
CLDevice device,
int param_name,
ByteBuffer param_value,
PointerBuffer param_value_size_ret) |
static int |
CL10.clGetProgramInfo(CLProgram program,
ByteBuffer[] param_value,
PointerBuffer param_value_size_ret)
Overloads clGetProgramInfo.
|
static int |
CL10.clGetProgramInfo(CLProgram program,
int param_name,
ByteBuffer param_value,
PointerBuffer param_value_size_ret) |
static int |
CL10.clGetProgramInfo(CLProgram program,
PointerBuffer sizes,
ByteBuffer param_value,
PointerBuffer param_value_size_ret)
Overloads clGetProgramInfo.
|
static int |
CL10.clReleaseProgram(CLProgram program) |
static int |
CL10.clRetainProgram(CLProgram program) |
protected abstract void |
CLBuildProgramCallback.handleMessage(CLProgram program)
The callback method.
|
Copyright © 2002-2009 lwjgl.org. All Rights Reserved.