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:
Diffstat (limited to 'release/scripts/templates_osl/temperature_to_rgb.osl')
-rw-r--r--release/scripts/templates_osl/temperature_to_rgb.osl9
1 files changed, 0 insertions, 9 deletions
diff --git a/release/scripts/templates_osl/temperature_to_rgb.osl b/release/scripts/templates_osl/temperature_to_rgb.osl
deleted file mode 100644
index 6b91416c609..00000000000
--- a/release/scripts/templates_osl/temperature_to_rgb.osl
+++ /dev/null
@@ -1,9 +0,0 @@
-
-shader temperature_to_rgb(
- float Kelvin = 1200.0,
- output color Color = 0.8)
-{
- /* Kelvin to RGB */
- Color = blackbody(Kelvin);
-}
-