Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mesh_runtime.h
| Show All 35 Lines | |||||
| struct KeyBlock; | struct KeyBlock; | ||||
| struct MLoop; | struct MLoop; | ||||
| struct MLoopTri; | struct MLoopTri; | ||||
| struct MVertTri; | struct MVertTri; | ||||
| struct Mesh; | struct Mesh; | ||||
| struct Object; | struct Object; | ||||
| struct Scene; | struct Scene; | ||||
| void BKE_mesh_runtime_reset(struct Mesh *mesh); | void BKE_mesh_runtime_init_data(struct Mesh *mesh); | ||||
| void BKE_mesh_runtime_free_data(struct Mesh *mesh); | |||||
| void BKE_mesh_runtime_reset_on_copy(struct Mesh *mesh, const int flag); | void BKE_mesh_runtime_reset_on_copy(struct Mesh *mesh, const int flag); | ||||
| int BKE_mesh_runtime_looptri_len(const struct Mesh *mesh); | int BKE_mesh_runtime_looptri_len(const struct Mesh *mesh); | ||||
| void BKE_mesh_runtime_looptri_recalc(struct Mesh *mesh); | void BKE_mesh_runtime_looptri_recalc(struct Mesh *mesh); | ||||
| const struct MLoopTri *BKE_mesh_runtime_looptri_ensure(const struct Mesh *mesh); | const struct MLoopTri *BKE_mesh_runtime_looptri_ensure(const struct Mesh *mesh); | ||||
| bool BKE_mesh_runtime_ensure_edit_data(struct Mesh *mesh); | bool BKE_mesh_runtime_ensure_edit_data(struct Mesh *mesh); | ||||
| bool BKE_mesh_runtime_clear_edit_data(struct Mesh *mesh); | bool BKE_mesh_runtime_clear_edit_data(struct Mesh *mesh); | ||||
| bool BKE_mesh_runtime_reset_edit_data(struct Mesh *mesh); | bool BKE_mesh_runtime_reset_edit_data(struct Mesh *mesh); | ||||
| void BKE_mesh_runtime_clear_geometry(struct Mesh *mesh); | void BKE_mesh_runtime_clear_geometry(struct Mesh *mesh); | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||