Uses of Class
org.jocl.cl_sampler
-
-
Uses of cl_sampler in org.jocl
Methods in org.jocl that return cl_sampler Modifier and Type Method Description static cl_sampler
CL. clCreateSampler(cl_context context, boolean normalized_coords, int addressing_mode, int filter_mode, int[] errcode_ret)
Deprecated.As of OpenCL 2.0.private static cl_sampler
CL. clCreateSamplerNative(cl_context context, boolean normalized_coords, int addressing_mode, int filter_mode, int[] errcode_ret)
static cl_sampler
CL. clCreateSamplerWithProperties(cl_context context, cl_sampler_properties properties, int[] errcode_ret)
Creates a sampler object.private static cl_sampler
CL. clCreateSamplerWithPropertiesNative(cl_context context, cl_sampler_properties properties, int[] errcode_ret)
Methods in org.jocl with parameters of type cl_sampler Modifier and Type Method Description static int
CL. clGetSamplerInfo(cl_sampler sampler, int param_name, long param_value_size, Pointer param_value, long[] param_value_size_ret)
Returns information about the sampler object.private static int
CL. clGetSamplerInfoNative(cl_sampler sampler, int param_name, long param_value_size, Pointer param_value, long[] param_value_size_ret)
static int
CL. clReleaseSampler(cl_sampler sampler)
Decrements the sampler reference count.private static int
CL. clReleaseSamplerNative(cl_sampler sampler)
static int
CL. clRetainSampler(cl_sampler sampler)
Increments the sampler reference count.private static int
CL. clRetainSamplerNative(cl_sampler sampler)
-