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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-06-06 11:39:44 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-06 11:39:44 +0300
commit0f26332d5d9a5cb6363afb3416a1bebd0d936230 (patch)
treef25e4a18ab2c4d32e4828a100491d17f7a835630 /source/blender/makesdna/DNA_node_types.h
parent2819b609339b907421dc25c00223950ccee381ab (diff)
Remove mutex lock from node localization
There is no obvious threading-unsafe code in the localization. The main source of issues were the new_node/new_socket pointers which are no longer used during node tree duplication.
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 342641f00ac..672dbaebae1 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -479,9 +479,6 @@ typedef struct bNodeTree {
int (*test_break)(void *);
void (*update_draw)(void *);
void *tbh, *prh, *sdh, *udh;
-
- void *duplilock;
-
} bNodeTree;
/* ntree->type, index */