Merge branch 'blender-v2.83-release'

This commit is contained in:
Bastien Montagne 2020-04-22 16:01:17 +02:00
commit 912ac457a6
Notes: blender-bot 2023-04-19 22:54:54 +02:00
Referenced by issue #76277, Enabling Viewer Border in Compositor Crashes Blender
1 changed files with 7 additions and 3 deletions

View File

@ -71,11 +71,15 @@ enum {
IDWALK_CB_OVERRIDE_LIBRARY_REFERENCE = (1 << 5),
/**
* Adjusts #ID.us reference-count.
* \note keep in sync with 'newlibadr_us' use in readfile.c
* This ID usage is fully refcounted.
* Callback is responsible to deal accordingly with #ID.us if needed.
*/
IDWALK_CB_USER = (1 << 8),
/** Ensure #ID.us is at least 1 on use. */
/**
* This ID usage is not refcounted, but at least one user should be generated by it (to avoid
* e.g. loosing the used ID on save/reload).
* Callback is responsible to deal accordingly with #ID.us if needed.
*/
IDWALK_CB_USER_ONE = (1 << 9),
};