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:
authorKent Mein <mein@cs.umn.edu>2008-04-11 22:07:27 +0400
committerKent Mein <mein@cs.umn.edu>2008-04-11 22:07:27 +0400
commitc92660b18c06866ca23c68506637bd487012dcd6 (patch)
tree48097bb4878972e2bf20f14e545dbcd5c7d21903 /source/blender
parentf057a38e985fe4db1c57f48864624985a31c9235 (diff)
This is patch [#8531] Change gamma node max value
Submitted By: Stephane SOPPERA (soppera) It just increases the max value for gamma correction to 10f. Which as noted in the patch is the same as the Gimp's color level tool. Kent
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/nodes/intern/CMP_nodes/CMP_gamma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c b/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c
index 5d0ab729e08..6cd1c5981a6 100644
--- a/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c
+++ b/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c
@@ -34,7 +34,7 @@
static bNodeSocketType cmp_node_gamma_in[]= {
{ SOCK_RGBA, 1, "Image", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
- { SOCK_VALUE, 1, "Gamma", 1.0f, 0.0f, 0.0f, 0.0f, 0.001f, 2.0f},
+ { SOCK_VALUE, 1, "Gamma", 1.0f, 0.0f, 0.0f, 0.0f, 0.001f, 10.0f},
{ -1, 0, "" }
};
static bNodeSocketType cmp_node_gamma_out[]= {