2012-09-15 15:41:37 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2012-09-15 15:41: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-09-15 15:41:37 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-09-15 15:41: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-09-15 15:41:37 +00:00
|
|
|
*/
|
|
|
|
|
2016-08-12 01:01:09 +02:00
|
|
|
#include "stdosl.h"
|
2016-07-30 23:30:36 +02:00
|
|
|
#include "node_ramp_util.h"
|
2012-09-15 15:41:37 +00:00
|
|
|
|
|
|
|
shader node_rgb_ramp(
|
2016-05-08 01:54:35 +02:00
|
|
|
color ramp_color[] = {0.0},
|
|
|
|
float ramp_alpha[] = {0.0},
|
2016-05-29 12:24:47 +02:00
|
|
|
int interpolate = 1,
|
2012-09-15 15:41:37 +00:00
|
|
|
|
2012-10-19 03:07:58 +00:00
|
|
|
float Fac = 0.0,
|
2012-12-11 16:06:03 +00:00
|
|
|
output color Color = 0.0,
|
2012-10-19 03:07:58 +00:00
|
|
|
output float Alpha = 1.0)
|
2012-09-15 15:41:37 +00:00
|
|
|
{
|
2016-07-30 23:30:36 +02:00
|
|
|
Color = rgb_ramp_lookup(ramp_color, Fac, interpolate, 0);
|
|
|
|
Alpha = rgb_ramp_lookup(ramp_alpha, Fac, interpolate, 0);
|
2012-09-15 15:41:37 +00:00
|
|
|
}
|
|
|
|
|