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:
authorCampbell Barton <ideasman42@gmail.com>2008-04-09 19:46:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-09 19:46:26 +0400
commit235f793f28bebf1fdfbc94bf8fc2f0c3ac727c49 (patch)
tree6d13b9fed2ab2785a2ade7988a25755374a92c81 /source/blender/makesdna
parent9f6080cf1b12c1db36cc6c6001bb0a9404a07771 (diff)
Made aspx/y into floats so we can render precise regions (for apricot terrain baking)
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 05fce5e4598..e5056e048ce 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -202,14 +202,6 @@ typedef struct RenderData {
*/
short ysch;
/**
- * Adjustment factors for the aspect ratio in the x direction
- */
- short xasp;
- /**
- * Adjustment factors for the aspect ratio in the x direction
- */
- short yasp;
- /**
* The number of part to use in the x direction
*/
short xparts;
@@ -225,7 +217,7 @@ typedef struct RenderData {
short bufflag;
short quality;
- short rpad;
+ short rpad, rpad1, rpad2;
/**
* Flags for render settings. Use bit-masking to access the settings.
@@ -260,6 +252,15 @@ typedef struct RenderData {
/* information on different layers to be rendered */
ListBase layers;
short actlay, pad;
+
+ /**
+ * Adjustment factors for the aspect ratio in the x direction, was a short in 2.45
+ */
+ float xasp;
+ /**
+ * Adjustment factors for the aspect ratio in the x direction, was a short in 2.45
+ */
+ float yasp;
float frs_sec_base;