Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_attribute.h
| Show First 20 Lines • Show All 72 Lines • ▼ Show 20 Lines | struct CustomDataLayer *BKE_id_attribute_find(const struct ID *id, | ||||
| eAttrDomain domain); | eAttrDomain domain); | ||||
| struct CustomDataLayer *BKE_id_attribute_search(struct ID *id, | struct CustomDataLayer *BKE_id_attribute_search(struct ID *id, | ||||
| const char *name, | const char *name, | ||||
| eCustomDataMask type, | eCustomDataMask type, | ||||
| eAttrDomainMask domain_mask); | eAttrDomainMask domain_mask); | ||||
| eAttrDomain BKE_id_attribute_domain(const struct ID *id, const struct CustomDataLayer *layer); | eAttrDomain BKE_id_attribute_domain(const struct ID *id, const struct CustomDataLayer *layer); | ||||
| int BKE_id_attribute_data_length(struct ID *id, struct CustomDataLayer *layer); | int BKE_id_attribute_data_length(const struct ID *id, struct CustomDataLayer *layer); | ||||
| int BKE_id_attribute_domain_length(const struct ID *id, eAttrDomain domain); | |||||
| bool BKE_id_attribute_required(const struct ID *id, const char *name); | bool BKE_id_attribute_required(const struct ID *id, const char *name); | ||||
| bool BKE_id_attribute_rename(struct ID *id, | bool BKE_id_attribute_rename(struct ID *id, | ||||
| const char *old_name, | const char *old_name, | ||||
| const char *new_name, | const char *new_name, | ||||
| struct ReportList *reports); | struct ReportList *reports); | ||||
| int BKE_id_attributes_length(const struct ID *id, | int BKE_id_attributes_length(const struct ID *id, | ||||
| eAttrDomainMask domain_mask, | eAttrDomainMask domain_mask, | ||||
| ▲ Show 20 Lines • Show All 54 Lines • Show Last 20 Lines | |||||