Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/bmesh.h
| Show First 20 Lines • Show All 167 Lines • ▼ Show 20 Lines | |||||
| * - Skip BMO flag allocation, its not needed in many cases, | * - Skip BMO flag allocation, its not needed in many cases, | ||||
| * this is fairly redundant to calc by default. | * this is fairly redundant to calc by default. | ||||
| * - Ability to call BMO's with option not to create return data (will save some time) | * - Ability to call BMO's with option not to create return data (will save some time) | ||||
| * - Binary diff UNDO, currently this uses huge amount of ram | * - Binary diff UNDO, currently this uses huge amount of ram | ||||
| * when all shapes are stored for each undo step for eg. | * when all shapes are stored for each undo step for eg. | ||||
| * - Use two different iterator types for BMO map/buffer types. | * - Use two different iterator types for BMO map/buffer types. | ||||
| */ | */ | ||||
| #include "BKE_customdata.h" | |||||
| #include "DNA_customdata_types.h" /* BMesh struct in bmesh_class.h uses */ | #include "DNA_customdata_types.h" /* BMesh struct in bmesh_class.h uses */ | ||||
| #include "DNA_listBase.h" /* selection history uses */ | #include "DNA_listBase.h" /* selection history uses */ | ||||
| #include <stdio.h> | #include <stdio.h> | ||||
| #include <stdlib.h> | #include <stdlib.h> | ||||
| #include "bmesh_class.h" | #include "bmesh_class.h" | ||||
| Show All 30 Lines | |||||