summaryrefslogtreecommitdiff
path: root/src/kernels/cl_internal_copy_buffer_to_image_2d.cl
blob: a218b58a09c11d5f07f45f2d5579e7075db79912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
kernel void __cl_copy_buffer_to_image_2d(__read_only image2d_t image, global uchar* buffer,
                                        unsigned int region0, unsigned int region1, unsigned int region2,
                                        unsigned int dst_origin0, unsigned int dst_origin1, unsigned int dst_origin2,
                                        unsigned int src_offset)
{
  int i = get_global_id(0);
  int j = get_global_id(1);
  int k = get_global_id(2);
  uint4 color = (uint4)(0);
  int2 dst_coord;
  if((i >= region0) || (j>= region1) || (k>=region2))
    return;
  dst_coord.x = dst_origin0 + i;
  dst_coord.y = dst_origin1 + j;
  src_offset += (k * region1 + j) * region0 + i;
  color.x = buffer[src_offset];
  write_imageui(image, dst_coord, color);
}