[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [14386] trunk/blender/source/blender/nodes /intern/CMP_nodes/CMP_gamma.c: This is patch [#8531] Change gamma node max value

Kent Mein mein at cs.umn.edu
Fri Apr 11 20:07:37 CEST 2008


Revision: 14386
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14386
Author:   sirdude
Date:     2008-04-11 20:07:27 +0200 (Fri, 11 Apr 2008)

Log Message:
-----------
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

Modified Paths:
--------------
    trunk/blender/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c

Modified: trunk/blender/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c
===================================================================
--- trunk/blender/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c	2008-04-11 15:47:21 UTC (rev 14385)
+++ trunk/blender/source/blender/nodes/intern/CMP_nodes/CMP_gamma.c	2008-04-11 18:07:27 UTC (rev 14386)
@@ -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[]= {





More information about the Bf-blender-cvs mailing list