summaryrefslogtreecommitdiff
path: root/kernels/runtime_climage_from_boname.cl
blob: 25baee6d8cc6e0288d0ca2e2ffdbbbb2f6334dec (plain)
1
2
3
4
5
6
7
8
__kernel void
runtime_climage_from_boname(__write_only image2d_t dst)
{
  int2 coord;
  coord.x = (int)get_global_id(0);
  coord.y = (int)get_global_id(1);
  write_imagef(dst, coord, (float4)(0.34f));
}