Using the cl_context_properties parameter

Can anyone please tell me how to specify the “cl_context_properties *properties” parameter found in the “clCreateContext” and “clCreateContextFromType” functions?

I see that neither the OpenCL-1.0.0.43 specification examples (D.1 and D.3) nor the Nvidia SDK examples make use of this parameter (it is always set to NULL).

Is this parameter supposed to be used and, if so, in which cases is it supposed to be used?

Thank you for your help.

Something along the lines of:

cl_context_properties prop = {(cl_context_property)PROP_IDENTIFIER, (cl_context_property)value, 0};

However, this is vendor-specific, so you’ll need to see the vendor’s instructions for particular properties and usage.