Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_attribute.h
| Show First 20 Lines • Show All 60 Lines • ▼ Show 20 Lines | struct CustomDataLayer *BKE_id_attribute_new(struct ID *id, | ||||
| const char *name, | const char *name, | ||||
| const int type, | const int type, | ||||
| const AttributeDomain domain, | const AttributeDomain domain, | ||||
| struct ReportList *reports); | struct ReportList *reports); | ||||
| bool BKE_id_attribute_remove(struct ID *id, | bool BKE_id_attribute_remove(struct ID *id, | ||||
| struct CustomDataLayer *layer, | struct CustomDataLayer *layer, | ||||
| struct ReportList *reports); | struct ReportList *reports); | ||||
| struct CustomDataLayer *BKE_id_attribute_find(const struct ID *id, | |||||
| const char *name, | |||||
| const int type, | |||||
| const AttributeDomain domain); | |||||
| AttributeDomain BKE_id_attribute_domain(struct ID *id, struct CustomDataLayer *layer); | AttributeDomain BKE_id_attribute_domain(struct ID *id, struct CustomDataLayer *layer); | ||||
| int BKE_id_attribute_data_length(struct ID *id, struct CustomDataLayer *layer); | int BKE_id_attribute_data_length(struct ID *id, struct CustomDataLayer *layer); | ||||
| bool BKE_id_attribute_required(struct ID *id, struct CustomDataLayer *layer); | bool BKE_id_attribute_required(struct ID *id, struct CustomDataLayer *layer); | ||||
| bool BKE_id_attribute_rename(struct ID *id, | bool BKE_id_attribute_rename(struct ID *id, | ||||
| struct CustomDataLayer *layer, | struct CustomDataLayer *layer, | ||||
| const char *new_name, | const char *new_name, | ||||
| struct ReportList *reports); | struct ReportList *reports); | ||||
| Show All 11 Lines | |||||