2012-12-11 14:39:37 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2012-12-11 14:39:37 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2012-12-11 14:39:37 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-12-11 14:39:37 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
2014-12-25 02:50:24 +01:00
|
|
|
* limitations under the License.
|
2012-12-11 14:39:37 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdosl.h"
|
|
|
|
#include "oslutil.h"
|
|
|
|
|
2016-05-08 01:54:35 +02:00
|
|
|
float ramp_lookup(color ramp[], float at, int component)
|
2012-12-11 14:39:37 +00:00
|
|
|
{
|
2016-05-08 01:54:35 +02:00
|
|
|
int table_size = arraylength(ramp);
|
|
|
|
|
2015-12-04 20:17:25 +05:00
|
|
|
if (at < 0.0 || at > 1.0) {
|
|
|
|
float t0, dy;
|
2016-02-17 21:36:54 +11:00
|
|
|
if (at < 0.0) {
|
2015-12-04 20:17:25 +05:00
|
|
|
t0 = ramp[0][component];
|
|
|
|
dy = t0 - ramp[1][component];
|
|
|
|
at = -at;
|
|
|
|
}
|
|
|
|
else {
|
2016-05-08 01:54:35 +02:00
|
|
|
t0 = ramp[table_size - 1][component];
|
|
|
|
dy = t0 - ramp[table_size - 2][component];
|
2015-12-04 20:17:25 +05:00
|
|
|
at = at - 1.0;
|
|
|
|
}
|
2016-05-08 01:54:35 +02:00
|
|
|
return t0 + dy * at * (table_size - 1);
|
2015-12-04 20:17:25 +05:00
|
|
|
}
|
|
|
|
|
2016-05-08 01:54:35 +02:00
|
|
|
float f = clamp(at, 0.0, 1.0) * (table_size - 1);
|
2012-12-11 14:39:37 +00:00
|
|
|
|
|
|
|
/* clamp int as well in case of NaN */
|
|
|
|
int i = (int)f;
|
|
|
|
if (i < 0) i = 0;
|
2016-05-08 01:54:35 +02:00
|
|
|
if (i >= table_size) i = table_size - 1;
|
2012-12-11 14:39:37 +00:00
|
|
|
float t = f - (float)i;
|
|
|
|
|
|
|
|
float result = ramp[i][component];
|
|
|
|
|
|
|
|
if (t > 0.0)
|
|
|
|
result = (1.0 - t) * result + t * ramp[i + 1][component];
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
shader node_rgb_curves(
|
2016-05-08 01:54:35 +02:00
|
|
|
color ramp[] = {0.0},
|
2015-12-04 20:17:25 +05:00
|
|
|
float min_x = 0.0,
|
|
|
|
float max_x = 1.0,
|
2012-12-11 14:39:37 +00:00
|
|
|
|
2012-12-11 16:06:03 +00:00
|
|
|
color ColorIn = 0.0,
|
2012-12-11 14:39:37 +00:00
|
|
|
float Fac = 0.0,
|
2012-12-11 16:06:03 +00:00
|
|
|
output color ColorOut = 0.0)
|
2012-12-11 14:39:37 +00:00
|
|
|
{
|
2015-12-04 20:17:25 +05:00
|
|
|
color c = (ColorIn - color(min_x, min_x, min_x)) / (max_x - min_x);
|
|
|
|
|
|
|
|
ColorOut[0] = ramp_lookup(ramp, c[0], 0);
|
|
|
|
ColorOut[1] = ramp_lookup(ramp, c[1], 1);
|
|
|
|
ColorOut[2] = ramp_lookup(ramp, c[2], 2);
|
2012-12-11 14:39:37 +00:00
|
|
|
|
|
|
|
ColorOut = mix(ColorIn, ColorOut, Fac);
|
|
|
|
}
|
|
|
|
|