Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2014-10-03 18:03:49 +0400
committerThomas Dinges <blender@dingto.org>2014-10-03 18:03:49 +0400
commit4b2fadeaba3a194cafe151542d0acc42f82c2435 (patch)
treed01bb7313cc7fd2e67ca6da800e1f874851f55b6 /release
parent8f36d260d30850d0075f638cfcc68b4f0d86075e (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/templates_osl/westin_closure.osl12
1 files changed, 0 insertions, 12 deletions
diff --git a/release/scripts/templates_osl/westin_closure.osl b/release/scripts/templates_osl/westin_closure.osl
deleted file mode 100644
index 8d90f3aa306..00000000000
--- a/release/scripts/templates_osl/westin_closure.osl
+++ /dev/null
@@ -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);
-} \ No newline at end of file