summaryrefslogtreecommitdiff
path: root/kernels/compiler_uint8_copy.cl
blob: 9eee538b2d4bf9281f3665252ee166f0bea7d08c (plain)
1
2
3
4
5
6
7
__kernel void
compiler_uint8_copy(__global uint8 *src, __global uint8 *dst)
{
  int id = (int)get_global_id(0);
  dst[id] = src[id];
}