summaryrefslogtreecommitdiff
path: root/opencl/contrast-curve.cl
blob: 4abf13ee4148d445ecf651e20d1ba9b12cb160a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* This file is an image processing operation for GEGL
 *
 * GEGL is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * GEGL is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
 *
 * Copyright 2013 Carlos Zubieta <czubieta.dev@gmail.com>
 */

__kernel void cl_contrast_curve(__global const float2 *in,
                                __global       float2 *out,
                                __global       float  *curve,
                                               int     num_sampling_points)
{
  int gid     = get_global_id(0);
  float2 in_v = in[gid];
  int x       = in_v.x * num_sampling_points;
  float y;

  if(x < 0)
    y = curve[0];
  else if (x < num_sampling_points)
    y = curve[x];
  else
    y = curve[num_sampling_points - 1];

  out[gid] = (float2) (y, in_v.y);
}