xref: /llvm-project/libclc/r600/lib/image/write_imagef.cl (revision 3d349ea98e2bdf0493920acb4f7f6e15f0c4b9c2)
1*3d349ea9SJan Vesely#include <clc/clc.h>
2*3d349ea9SJan Vesely
3*3d349ea9SJan Vesely_CLC_DECL void __clc_write_imagef_2d(image2d_t image, int2 coord, float4 color);
4*3d349ea9SJan Vesely
5*3d349ea9SJan Vesely_CLC_OVERLOAD _CLC_DEF void
6*3d349ea9SJan Veselywrite_imagef(image2d_t image, int2 coord, float4 color)
7*3d349ea9SJan Vesely{
8*3d349ea9SJan Vesely  __clc_write_imagef_2d(image, coord, color);
9*3d349ea9SJan Vesely}
10