logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

write_image1d - Write color value to location in a 1D image object.

Authors

TheKhronosGroup

Description

write_imagef can only be used with image objects created with image_channel_data_type set to one of the
       pre-defined packed formats or set to CL_SNORM_INT8, CL_UNORM_INT8, CL_SNORM_INT16, CL_UNORM_INT16,
       CL_HALF_FLOAT, or CL_FLOAT. Appropriate data format conversion will be done to convert channel data from
       a floating-point value to actual data format in which the channels are stored.

       write_imagei functions can only be used with image objects created with image_channel_data_type set to
       one of the following values: CL_SIGNED_INT8, CL_SIGNED_INT16, or CL_SIGNED_INT32.

       write_imageui functions can only be used with image objects created with image_channel_data_type set to
       one of the following values: CL_UNSIGNED_INT8, CL_UNSIGNED_INT16, or CL_UNSIGNED_INT32.

       The write_imageh functions are enabled when the half type is supported and can only be used with image
       objects created with image_channel_data_type set to one of the pre-defined packed formats or set to
       CL_SNORM_INT8, CL_UNORM_INT8, CL_SNORM_INT16, CL_UNORM_INT16 or CL_HALF_FLOAT. Appropriate data format
       conversion will be done to convert channel data from a floating-point value to actual data format in
       which the channels are stored.  Functions that take image1d_t or image1d_buffer_t.PP The functions that
       take image1d_t or image1d_buffer_t write the color value to the location specified by coord in the 1D
       image or 1D image buffer object specified by image. Appropriate data format conversion to the specified
       image format is done before writing the color value.  coord is considered to be unnormalized coordinates
       and must be in the range 0... image width - 1.

       for functions taking image1d_t or image1d_buffer_t, the behavior of write_imagef, write_imagei,
       write_imageui, and write_imageh for image objects created with image_channel_data_type values not
       specified in the description above or with coordinate values that are not in the range (0... image width
       - 1), is undefined.  Functions that take image1d_array_t.PP The functions that take image1d_array_t write
       the color value to the location specified by coord.x in the 1D image identified by coord.y in the 1D
       image array specified by image. Appropriate data format conversion to the specified image format is done
       before writing the color value.  coord.x and coord.y are considered to be unnormalized coordinates and
       must be in the range 0 ... image width - 1 and 0 ... image number of layers - 1.

       For functions taking image1d_array_t, the behavior of write_imagef, write_imagei and write_imageui for
       image objects created with image_channel_data_type values not specified in the description above or with
       (x, y) coordinate values that are not in the range (0 ... image width - 1, 0 ...image number of layers -
       1), respectively, is undefined.

Name

       write_image1d - Write color value to location in a 1D image object.

       voidwrite_imagef(image1d_timage,intcoord,float4color);voidwrite_imagef(image1d_buffer_timage,intcoord,float4color);voidwrite_imagef(image1d_array_timage,int2coord,float4color);voidwrite_imagei(image1d_timage,intcoord,int4color);voidwrite_imagei(image1d_buffer_timage,intcoord,int4color);voidwrite_imagei(image1d_array_timage,int2coord,int4color);voidwrite_imageui(image1d_timage,intcoord,uint4color);voidwrite_imageui(image1d_buffer_timage,intcoord,uint4color);voidwrite_imageui(image1d_array_timage,int2coord,uint4color);voidwrite_imageh(image1d_timage,intcoord,half4color);voidwrite_imageh(image1d_buffer_timage,intcoord,half4color);voidwrite_imageh(image1d_array_timage,int2coord,half4color);

Notes

        1. OpenCL Specification
           page 292, section 6.12.14 - Image Read and Write Functions

The Khronos Group                                  11/18/2024                             WRITE_IMAGE(1D)(3clc)

See Also

imageFunctions(3clc)

Specification

OpenCLSpecification[1]

See Also