Blame c++/contourgl/cl/hello.cl

c76ce8
__constant char s[] = "Hello!";
a7f97a
c76ce8
__kernel void hello(__global char *out) {
c76ce8
   size_t tid = get_global_id(0);
c76ce8
   out[tid] = s[tid];
c76ce8
}