Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/DEG_depsgraph.h
| Show First 20 Lines • Show All 149 Lines • ▼ Show 20 Lines | |||||
| /* Graph Evaluation ----------------------------- */ | /* Graph Evaluation ----------------------------- */ | ||||
| /* Frame changed recalculation entry point. */ | /* Frame changed recalculation entry point. */ | ||||
| void DEG_evaluate_on_framechange(Depsgraph *graph, float ctime); | void DEG_evaluate_on_framechange(Depsgraph *graph, float ctime); | ||||
| /* Data changed recalculation entry point. */ | /* Data changed recalculation entry point. */ | ||||
| void DEG_evaluate_on_refresh(Depsgraph *graph); | void DEG_evaluate_on_refresh(Depsgraph *graph); | ||||
| bool DEG_needs_eval(Depsgraph *graph); | |||||
| /* Editors Integration -------------------------- */ | /* Editors Integration -------------------------- */ | ||||
| /* Mechanism to allow editors to be informed of depsgraph updates, | /* Mechanism to allow editors to be informed of depsgraph updates, | ||||
| * to do their own updates based on changes. | * to do their own updates based on changes. | ||||
| */ | */ | ||||
| typedef struct DEGEditorUpdateContext { | typedef struct DEGEditorUpdateContext { | ||||
| struct Main *bmain; | struct Main *bmain; | ||||
| ▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines | |||||