[Bf-blender-cvs] [879c5d4] master: Cycles: Make the max value for World MIS Map Resolution a power of two.

Thomas Dinges noreply at git.blender.org
Mon Aug 31 18:20:39 CEST 2015


Commit: 879c5d4568ee6651d73ae3b31541f5ed17b9f0a1
Author: Thomas Dinges
Date:   Mon Aug 31 18:17:16 2015 +0200
Branches: master
https://developer.blender.org/rB879c5d4568ee6651d73ae3b31541f5ed17b9f0a1

Cycles: Make the max value for World MIS Map Resolution a power of two.

Old value likely was a copy / paste error.

===================================================================

M	intern/cycles/blender/addon/properties.py

===================================================================

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 3417435..23d0d85 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -743,7 +743,7 @@ class CyclesWorldSettings(bpy.types.PropertyGroup):
                 name="Map Resolution",
                 description="Importance map size is resolution x resolution; "
                             "higher values potentially produce less noise, at the cost of memory and speed",
-                min=4, max=8096,
+                min=4, max=8192,
                 default=256,
                 )
         cls.samples = IntProperty(




More information about the Bf-blender-cvs mailing list