C Specification
To return information about a sampler object, call the function
// Provided by CL_VERSION_1_0
cl_int clGetSamplerInfo(
cl_sampler sampler,
cl_sampler_info param_name,
size_t param_value_size,
void* param_value,
size_t* param_value_size_ret);
Parameters
-
sampler specifies the sampler being queried.
-
param_name specifies the information to query. The list of supported param_name types and the information returned in param_value by clGetSamplerInfo is described in the Sampler Object Queries table.
-
param_value is a pointer to memory where the appropriate result being queried is returned. If param_value is
NULL, it is ignored. -
param_value_size specifies the size in bytes of memory pointed to by param_value. This size must be greater than or equal to the size of the return type specified in the Sampler Object Queries table. If param_value is
NULL, it is ignored. -
param_value_size_ret returns the actual size in bytes of data being queried by param_name. If param_value_size_ret is
NULL, it is ignored.
Description
| Sampler Info | Return Type | Description |
|---|---|---|
|
|
Return the sampler reference count. |
|
|
Return the context specified when the sampler is created. |
|
|
Return the normalized coords value associated with sampler. |
|
|
Return the addressing mode value associated with sampler. |
|
|
Return the filter mode value associated with sampler. |
missing before version 3.0. |
|
Return the properties argument specified in clCreateSamplerWithProperties. If the properties argument specified in clCreateSamplerWithProperties
used to create sampler was not If sampler was created using clCreateSampler, or if the properties
argument specified in clCreateSamplerWithProperties was |
clGetSamplerInfo returns CL_SUCCESS if the function is executed
successfully.
Otherwise, it returns one of the following errors:
-
CL_INVALID_if sampler is a not a valid sampler object.SAMPLER -
CL_INVALID_if param_name is not one of the supported values, or if the size in bytes specified by param_value_size is less than size of the return type specified in the Sampler Object Queries table and param_value is notVALUE NULL. -
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the device.OF_ RESOURCES -
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the host.OF_ HOST_ MEMORY
Document Notes
For more information, see the OpenCL Specification
This page is extracted from the OpenCL Specification. Fixes and changes should be made to the Specification, not directly.