2011-04-27 11:58:34 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +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
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +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
|
|
|
|
* limitations under the License
|
2011-04-27 11:58:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
2011-11-06 21:05:58 +00:00
|
|
|
/* Gradient */
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-06-08 19:57:25 +00:00
|
|
|
__device float svm_gradient(float3 p, NodeGradientType type)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2011-11-06 21:05:58 +00:00
|
|
|
float x, y, z;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-06-09 18:56:12 +00:00
|
|
|
x = p.x;
|
|
|
|
y = p.y;
|
|
|
|
z = p.z;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
if(type == NODE_BLEND_LINEAR) {
|
2011-11-06 21:05:58 +00:00
|
|
|
return x;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
else if(type == NODE_BLEND_QUADRATIC) {
|
2011-11-06 21:05:58 +00:00
|
|
|
float r = fmaxf(x, 0.0f);
|
2011-04-27 11:58:34 +00:00
|
|
|
return r*r;
|
|
|
|
}
|
|
|
|
else if(type == NODE_BLEND_EASING) {
|
2011-11-06 21:05:58 +00:00
|
|
|
float r = fminf(fmaxf(x, 0.0f), 1.0f);
|
2011-04-27 11:58:34 +00:00
|
|
|
float t = r*r;
|
|
|
|
|
|
|
|
return (3.0f*t - 2.0f*t*r);
|
|
|
|
}
|
|
|
|
else if(type == NODE_BLEND_DIAGONAL) {
|
2013-05-21 13:22:11 +00:00
|
|
|
return (x + y) * 0.5f;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
else if(type == NODE_BLEND_RADIAL) {
|
2013-05-12 14:13:29 +00:00
|
|
|
return atan2f(y, x) / M_2PI_F + 0.5f;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
else {
|
2011-11-08 14:10:33 +00:00
|
|
|
float r = fmaxf(1.0f - sqrtf(x*x + y*y + z*z), 0.0f);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
if(type == NODE_BLEND_QUADRATIC_SPHERE)
|
|
|
|
return r*r;
|
|
|
|
else if(type == NODE_BLEND_SPHERICAL)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
2011-11-06 21:05:58 +00:00
|
|
|
__device void svm_node_tex_gradient(ShaderData *sd, float *stack, uint4 node)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2011-11-06 21:05:58 +00:00
|
|
|
uint type, co_offset, color_offset, fac_offset;
|
|
|
|
|
|
|
|
decode_node_uchar4(node.y, &type, &co_offset, &fac_offset, &color_offset);
|
|
|
|
|
|
|
|
float3 co = stack_load_float3(stack, co_offset);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-06-08 19:57:25 +00:00
|
|
|
float f = svm_gradient(co, (NodeGradientType)type);
|
2011-11-06 21:05:58 +00:00
|
|
|
f = clamp(f, 0.0f, 1.0f);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-06 21:05:58 +00:00
|
|
|
if(stack_valid(fac_offset))
|
|
|
|
stack_store_float(stack, fac_offset, f);
|
|
|
|
if(stack_valid(color_offset))
|
|
|
|
stack_store_float3(stack, color_offset, make_float3(f, f, f));
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|