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/source
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2013-03-24 14:52:20 +0400
committerThomas Dinges <blender@dingto.org>2013-03-24 14:52:20 +0400
commitc4ae6f2c3653faed47644713382ae78a49ef074e (patch)
treec1c1b9630b6840eb39368a2fca1168464d4ae34b /source
parent0bc791a34fa3464b8df5c91de7ef7696d58468a9 (diff)
Fix for [#34747] Rendering invisible tiles
* reset_session() was not taking render percentage into account in case persistent_data was enabled. * also deprecate old "maximsize" DNA variable.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index cd1acb53029..2b78a76b9fa 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -388,7 +388,9 @@ typedef struct RenderData {
short filtertype; /* filter is box, tent, gauss, mitch, etc */
- short size, maximsize; /* size in %, max in Kb */
+ short size; /* size in % */
+
+ short maximsize DNA_DEPRECATED; /* max in Kb */
short pad6;