1#include <clc/clc.h> 2 3_CLC_DECL void __clc_write_imagef_2d(image2d_t image, int2 coord, float4 color); 4 5_CLC_OVERLOAD _CLC_DEF void 6write_imagef(image2d_t image, int2 coord, float4 color) 7{ 8 __clc_write_imagef_2d(image, coord, color); 9} 10