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>2019-02-27 05:54:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 06:00:59 +0300
commitea69d9858058e027a8b49d0cf313c8d4abb777a4 (patch)
tree1bb41a0d7d2d52ad432e346486f9bb816c835dd6 /source/blender/makesdna/DNA_node_types.h
parentf595d558f0ce2488dc299652680addedfcc6180f (diff)
Cleanup: remove runtime structs from DNA
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 9713e6cc348..86bba29ef9a 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -349,22 +349,24 @@ typedef struct bNodeInstanceKey {
* WARNING: pointers are cast to this struct internally,
* it must be first member in hash entry structs!
*/
+#
+#
typedef struct bNodeInstanceHashEntry {
bNodeInstanceKey key;
/* tags for cleaning the cache */
short tag;
- short pad;
} bNodeInstanceHashEntry;
+#
+#
typedef struct bNodePreview {
/** Must be first. */
bNodeInstanceHashEntry hash_entry;
unsigned char *rect;
short xsize, ysize;
- int pad;
} bNodePreview;