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>2018-06-14 23:27:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-14 23:27:58 +0300
commit26786a2b87a08e239b7f255dc987ab70086bece0 (patch)
tree033d826ae5cdc946624639687d80e4c42ef6b7e9 /source/blender/makesdna/DNA_screen_types.h
parent1adfabc8c62ed3f067d209511ce3d868e76c9bbd (diff)
WM: add support for temporary region data
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index efb3bf486bf..7fd0dbeb156 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -489,7 +489,9 @@ enum {
/* Force delayed reinit of region size data, so that region size is calculated
* just big enough to show all its content (if enough space is available).
* Note that only ED_region_header supports this right now. */
- RGN_FLAG_DYNAMIC_SIZE = (1 << 2),
+ RGN_FLAG_DYNAMIC_SIZE = (1 << 2),
+ /* Region data is NULL'd on read, never written. */
+ RGN_FLAG_TEMP_REGIONDATA = (1 << 3),
};
/* region do_draw */