Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_ID.h
| Show First 20 Lines • Show All 680 Lines • ▼ Show 20 Lines | typedef enum IDRecalcFlag { | ||||
| ID_RECALC_AUDIO_VOLUME = (1 << 17), | ID_RECALC_AUDIO_VOLUME = (1 << 17), | ||||
| ID_RECALC_AUDIO_MUTE = (1 << 18), | ID_RECALC_AUDIO_MUTE = (1 << 18), | ||||
| ID_RECALC_AUDIO_LISTENER = (1 << 19), | ID_RECALC_AUDIO_LISTENER = (1 << 19), | ||||
| ID_RECALC_AUDIO = (1 << 20), | ID_RECALC_AUDIO = (1 << 20), | ||||
| ID_RECALC_PARAMETERS = (1 << 21), | ID_RECALC_PARAMETERS = (1 << 21), | ||||
| /* Makes it so everything what depends on time. | |||||
| * Basically, the same what changing frame in a timeline will do. */ | |||||
| ID_RECALC_TIME = (1 << 22), | |||||
| /* Input has changed and datablock is to be reload from disk. | /* Input has changed and datablock is to be reload from disk. | ||||
| * Applies to movie clips to inform that copy-on-written version is to be refreshed for the new | * Applies to movie clips to inform that copy-on-written version is to be refreshed for the new | ||||
| * 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 tag/marker required for undo in some cases, where actual data does not change | /* Virtual recalc tag/marker 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. | * and hence do not require an update, but conceptually we are dealing with something new. | ||||
| * | * | ||||
| ▲ Show 20 Lines • Show All 121 Lines • Show Last 20 Lines | |||||