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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdosl.h"
|
|
|
|
|
2012-10-17 01:53:29 +00:00
|
|
|
/* "Bump Mapping Unparameterized Surfaces on the GPU"
|
2011-04-27 11:58:34 +00:00
|
|
|
* Morten S. Mikkelsen, 2010 */
|
|
|
|
|
|
|
|
surface node_bump(
|
2013-05-10 16:57:17 +00:00
|
|
|
int invert = 0,
|
2012-10-20 15:09:36 +00:00
|
|
|
normal NormalIn = N,
|
2013-05-10 16:57:17 +00:00
|
|
|
float Strength = 0.1,
|
|
|
|
float Distance = 1.0,
|
2011-04-27 11:58:34 +00:00
|
|
|
float SampleCenter = 0.0,
|
|
|
|
float SampleX = 0.0,
|
|
|
|
float SampleY = 0.0,
|
2013-05-08 13:23:13 +00:00
|
|
|
output normal NormalOut = N)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2012-10-20 15:09:36 +00:00
|
|
|
/* get surface tangents from normal */
|
2011-04-27 11:58:34 +00:00
|
|
|
vector dPdx = Dx(P);
|
|
|
|
vector dPdy = Dy(P);
|
|
|
|
|
2012-10-20 15:09:36 +00:00
|
|
|
vector Rx = cross(dPdy, NormalIn);
|
|
|
|
vector Ry = cross(NormalIn, dPdx);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-10-20 15:09:36 +00:00
|
|
|
/* compute surface gradient and determinant */
|
2011-04-27 11:58:34 +00:00
|
|
|
float det = dot(dPdx, Rx);
|
2012-10-20 15:09:36 +00:00
|
|
|
vector surfgrad = (SampleX - SampleCenter) * Rx + (SampleY - SampleCenter) * Ry;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-10-20 15:09:36 +00:00
|
|
|
float absdet = fabs(det);
|
2013-05-09 14:05:37 +00:00
|
|
|
|
2013-05-10 16:57:17 +00:00
|
|
|
float strength = max(Strength, 0.0);
|
|
|
|
float dist = Distance;
|
|
|
|
|
|
|
|
if (invert)
|
|
|
|
dist *= -1.0;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-10-20 15:09:36 +00:00
|
|
|
/* compute and output perturbed normal */
|
2013-05-10 16:57:17 +00:00
|
|
|
NormalOut = normalize(absdet * NormalIn - dist * sign(det) * surfgrad);
|
2013-06-22 10:59:30 +00:00
|
|
|
NormalOut = normalize(strength * NormalOut + (1.0 - strength) * NormalIn);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|