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:
authorJeroen Bakker <jeroen@blender.org>2022-05-10 15:01:02 +0300
committerJeroen Bakker <jeroen@blender.org>2022-05-10 15:01:02 +0300
commit4ffeb2d449296fbc03d9f5af3288b8e0ff07c602 (patch)
treec0bcb30cdf11e8b1ea4d332a02e45fbab9f7e3c0 /source/blender/makesdna
parent061995775f87a455e685c706b40fe07765fa1b3b (diff)
DrawManager: Hide lock acquire behind experimental feature.
The acquire locking of the draw manager introduced other issues. The current implementation was a hacky solution as we know that the final solution is something totally different {T98016}. Related issues: * {T97988} * {T97600}
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 3de6453bbaa..21abb632b94 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -650,7 +650,8 @@ typedef struct UserDef_Experimental {
char use_override_templates;
char enable_eevee_next;
char use_sculpt_texture_paint;
- char _pad0[2];
+ char use_draw_manager_acquire_lock;
+ char _pad0[1];
/** `makesdna` does not allow empty structs. */
} UserDef_Experimental;