Files
test/intern/cycles/kernel/osl/shaders/node_bevel.osl

18 lines
497 B
Plaintext

/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
*
* SPDX-License-Identifier: Apache-2.0 */
#include "stdcycles.h"
shader node_bevel(int samples = 4,
float Radius = 0.05,
normal NormalIn = N,
output normal NormalOut = N)
{
/* Abuse texture call with special @bevel token. */
vector bevel_N = (normal)(color)texture("@bevel", samples, Radius);
/* Preserve input normal. */
NormalOut = normalize(NormalIn + (bevel_N - N));
}