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:
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;