Cycles: Remove Westin closure.

Was hooked up last year for testing purposes, as we already had some code for it, but the closure itself is not really good nor really useful, so let's remove it.
This commit is contained in:
Thomas Dinges
2014-10-03 16:03:49 +02:00
parent 8f36d260d3
commit 4b2fadeaba
8 changed files with 0 additions and 243 deletions

View File

@@ -1,12 +0,0 @@
shader node_westin_bsdf(
color Color = 0.8,
float Roughness = 0.5,
float Edginess = 0.2,
normal Normal = N,
output closure color Sheen = 0,
output closure color Backscatter = 0)
{
Sheen = Color * westin_sheen(Normal, Roughness);
Backscatter = Color * westin_backscatter(Normal, Edginess);
}