Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/depsgraph.h
| Show First 20 Lines • Show All 102 Lines • ▼ Show 20 Lines | struct Depsgraph { | ||||
| IDDepsNodes id_nodes; | IDDepsNodes id_nodes; | ||||
| /* Top-level time source node. */ | /* Top-level time source node. */ | ||||
| TimeSourceNode *time_source; | TimeSourceNode *time_source; | ||||
| /* Indicates whether relations needs to be updated. */ | /* Indicates whether relations needs to be updated. */ | ||||
| bool need_update; | bool need_update; | ||||
| /* Update tag flags set bu the tag_on_visible_update. */ | |||||
JacquesLucke: typo (`by`).
Also, there is no function named `tag_on_visible_update`.
Generally, I'm not a big… | |||||
| bool need_visibility_update; | |||||
| bool need_visibility_time_update; | |||||
| /* Indicates which ID types were updated. */ | /* Indicates which ID types were updated. */ | ||||
| char id_type_updated[INDEX_ID_MAX]; | char id_type_updated[INDEX_ID_MAX]; | ||||
| /* Indicates type of IDs present in the depsgraph. */ | /* Indicates type of IDs present in the depsgraph. */ | ||||
| char id_type_exist[INDEX_ID_MAX]; | char id_type_exist[INDEX_ID_MAX]; | ||||
| /* Quick-Access Temp Data ............. */ | /* Quick-Access Temp Data ............. */ | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||
typo (by).
Also, there is no function named tag_on_visible_update.
Generally, I'm not a big fan having comments say where variables are set. These comments can go out of date very easily and if the variable name isn't too generic, it's generally easy to find where it is set anyway.