This source file includes following definitions.
- avgblur_horiz
 
- avgblur_vert
 
__kernel void avgblur_horiz(__write_only image2d_t dst,
                            __read_only  image2d_t src,
                            int rad)
{
    const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
                               CLK_FILTER_NEAREST);
    int2 loc = (int2)(get_global_id(0), get_global_id(1));
    int2 size = (int2)(get_global_size(0), get_global_size(1));
    int count = 0;
    float4 acc = (float4)(0,0,0,0);
    for (int xx = max(0, loc.x - rad); xx < min(loc.x + rad + 1, size.x); xx++) {
        count++;
        acc += read_imagef(src, sampler, (int2)(xx, loc.y));
    }
    write_imagef(dst, loc, acc / count);
}
__kernel void avgblur_vert(__write_only image2d_t dst,
                           __read_only  image2d_t src,
                           int radv)
{
    const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
                               CLK_FILTER_NEAREST);
    int2 loc = (int2)(get_global_id(0), get_global_id(1));
    int2 size = (int2)(get_global_size(0), get_global_size(1));
    int count = 0;
    float4 acc = (float4)(0,0,0,0);
    for (int yy = max(0, loc.y - radv); yy < min(loc.y + radv + 1, size.y); yy++) {
        count++;
        acc += read_imagef(src, sampler, (int2)(loc.x, yy));
    }
    write_imagef(dst, loc, acc / count);
}