Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_context.h
| Show First 20 Lines • Show All 306 Lines • ▼ Show 20 Lines | |||||
| struct bGPdata *CTX_data_gpencil_data(const bContext *C); | struct bGPdata *CTX_data_gpencil_data(const bContext *C); | ||||
| struct bGPDlayer *CTX_data_active_gpencil_layer(const bContext *C); | struct bGPDlayer *CTX_data_active_gpencil_layer(const bContext *C); | ||||
| struct bGPDframe *CTX_data_active_gpencil_frame(const bContext *C); | struct bGPDframe *CTX_data_active_gpencil_frame(const bContext *C); | ||||
| int CTX_data_visible_gpencil_layers(const bContext *C, ListBase *list); | int CTX_data_visible_gpencil_layers(const bContext *C, ListBase *list); | ||||
| int CTX_data_editable_gpencil_layers(const bContext *C, ListBase *list); | int CTX_data_editable_gpencil_layers(const bContext *C, ListBase *list); | ||||
| int CTX_data_editable_gpencil_strokes(const bContext *C, ListBase *list); | int CTX_data_editable_gpencil_strokes(const bContext *C, ListBase *list); | ||||
| bool CTX_wm_interface_locked(const bContext *C); | |||||
| /* Gets pointer to the dependency graph. | /* Gets pointer to the dependency graph. | ||||
| * If it doesn't exist yet, it will be allocated. | * If it doesn't exist yet, it will be allocated. | ||||
| * | * | ||||
| * The result dependency graph is NOT guaranteed to be up-to-date neither from relation nor from | * The result dependency graph is NOT guaranteed to be up-to-date neither from relation nor from | ||||
| * evaluated data points of view. | * evaluated data points of view. | ||||
| * | * | ||||
| * NOTE: Can not be used if access to a fully evaluated datablock is needed. */ | * NOTE: Can not be used if access to a fully evaluated datablock is needed. */ | ||||
| struct Depsgraph *CTX_data_depsgraph_pointer(const bContext *C); | struct Depsgraph *CTX_data_depsgraph_pointer(const bContext *C); | ||||
| Show All 26 Lines | |||||