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
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2015-08-31 19:17:16 +0300
committerThomas Dinges <blender@dingto.org>2015-08-31 19:17:16 +0300
commit879c5d4568ee6651d73ae3b31541f5ed17b9f0a1 (patch)
tree71a31d6457a68cdec7ecf0e090cff80a1e6dfeb7 /intern
parent26bad9e8f040f5fd4fc4f1f438e3e418069ce30f (diff)
Cycles: Make the max value for World MIS Map Resolution a power of two.
Old value likely was a copy / paste error.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 3417435fcbd..23d0d850cde 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(