Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_ID.h
| Context not available. | |||||
| * input file or for color space changes. */ | * input file or for color space changes. */ | ||||
| ID_RECALC_SOURCE = (1 << 23), | ID_RECALC_SOURCE = (1 << 23), | ||||
| /* Virtual recalc required for undo in some cases, where actual data does not change and hence do | |||||
| * not require an update, but conceptually we are dealing with something new. | |||||
| * | |||||
| * Current known case: linked IDs made local without requiring any copy. While their users do not | |||||
| * require any update, they have actually been 'virtually' remapped from the linked ID to the | |||||
| * local one. | |||||
| */ | |||||
| ID_RECALC_VIRTUAL_UNDO = (1 << 24), | |||||
| /*************************************************************************** | /*************************************************************************** | ||||
| * Pseudonyms, to have more semantic meaning in the actual code without | * Pseudonyms, to have more semantic meaning in the actual code without | ||||
| * using too much low-level and implementation specific tags. */ | * using too much low-level and implementation specific tags. */ | ||||
| Context not available. | |||||