Specifies the addressing mode, that is how out-of-range texture
coordinates are handled. addressMode is an array of size three whose first,
second, and third elements specify the addressing mode for the first, second, and
third texture coordinates, respectively; the addressing mode is equal to either
cudaAddressModeClamp, in which case out-of-range texture coordinates are
clamped to the valid range, or cudaAddressModeWrap, in which case out-of range
texture coordinates are wrapped to the valid range;
cudaAddressModeWrap is only supported for normalized texture coordinates;
Deprecated.This method was intended for a simpler
kernel parameter setup in earlier CUDA versions,
and should not be required any more. It may be
removed in future releases.