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>2012-08-14 16:39:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-14 16:39:12 +0400
commit59fedc6b7c315cbf95035d7add1cdb6384eb13e7 (patch)
tree1f52baade85919117d263f001c4d42a8b85bdcf4 /source/blender/makesdna
parent34ebdcacfc26b7c42aa6c0aa4c03bf8aee72abac (diff)
rename blur `Reference` to `Variable Size`, improve tooltip
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_node_types.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 3f439454a97..4ff344d94d1 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -389,7 +389,7 @@ enum {
};
enum {
- CMP_NODEFLAG_BLUR_REFERENCE = (1 << 0),
+ CMP_NODEFLAG_BLUR_VARIABLE_SIZE = (1 << 0)
};
typedef struct NodeFrame {
@@ -399,8 +399,11 @@ typedef struct NodeFrame {
/* this one has been replaced with ImageUser, keep it for do_versions() */
typedef struct NodeImageAnim {
- int frames, sfra, nr;
- char cyclic, movie;
+ int frames DNA_DEPRECATED;
+ int sfra DNA_DEPRECATED;
+ int nr DNA_DEPRECATED;
+ char cyclic DNA_DEPRECATED;
+ char movie DNA_DEPRECATED;
short pad;
} NodeImageAnim;