Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/sculpt_intern.h
| Show All 27 Lines | |||||
| #include "DNA_vec_types.h" | #include "DNA_vec_types.h" | ||||
| #include "DNA_key_types.h" | #include "DNA_key_types.h" | ||||
| #include "BLI_bitmap.h" | #include "BLI_bitmap.h" | ||||
| #include "BLI_threads.h" | #include "BLI_threads.h" | ||||
| #include "BKE_pbvh.h" | #include "BKE_pbvh.h" | ||||
| struct Main; | |||||
| struct KeyBlock; | struct KeyBlock; | ||||
| struct Object; | struct Object; | ||||
| struct SculptOrigVertData; | struct SculptOrigVertData; | ||||
| struct SculptUndoNode; | struct SculptUndoNode; | ||||
| struct bContext; | struct bContext; | ||||
| bool sculpt_mode_poll(struct bContext *C); | bool sculpt_mode_poll(struct bContext *C); | ||||
| bool sculpt_mode_poll_view3d(struct bContext *C); | bool sculpt_mode_poll_view3d(struct bContext *C); | ||||
| Show All 9 Lines | |||||
| void sculpt_dyntopo_node_layers_add(struct SculptSession *ss); | void sculpt_dyntopo_node_layers_add(struct SculptSession *ss); | ||||
| void sculpt_update_after_dynamic_topology_toggle(struct Depsgraph *depsgraph, | void sculpt_update_after_dynamic_topology_toggle(struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct Object *ob); | struct Object *ob); | ||||
| void sculpt_dynamic_topology_enable_ex(struct Depsgraph *depsgraph, | void sculpt_dynamic_topology_enable_ex(struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct Object *ob); | struct Object *ob); | ||||
| void sculpt_dynamic_topology_disable_ex(struct Depsgraph *depsgraph, | void sculpt_dynamic_topology_disable_ex(struct Main *bmain, | ||||
| struct Depsgraph *depsgraph, | |||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct Object *ob, | struct Object *ob, | ||||
| struct SculptUndoNode *unode); | struct SculptUndoNode *unode); | ||||
| void sculpt_dynamic_topology_disable(bContext *C, struct SculptUndoNode *unode); | void sculpt_dynamic_topology_disable(bContext *C, struct SculptUndoNode *unode); | ||||
| /* Undo */ | /* Undo */ | ||||
| typedef enum { | typedef enum { | ||||
| ▲ Show 20 Lines • Show All 291 Lines • Show Last 20 Lines | |||||