summaryrefslogtreecommitdiff
path: root/kernels/compiler_shift_right.cl
blob: c10917047dd4f9259efe7c34f571c6b7638fd9bc (plain)
1
2
3
4
kernel void compiler_shift_right(global uint *src, global int *dst) {
    int i = get_global_id(0);
    dst[i] = src[i] >> 24;
}