Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2022-04-13 10:46:36 +0300
committerJoseph Eagar <joeedh@gmail.com>2022-04-13 10:48:10 +0300
commit4a70561bbdc97aa40c5817a573bf3515e3f95769 (patch)
treec622cf55278f734052dbe2a04e84b898229740a5 /source/blender/blenkernel/intern/attribute.c
parente0c8d0913b96922844912d6c07aba099b42edd79 (diff)
Fix T97164: Voxel remesh only supports vertex float
color attributes. Voxel remesher now supports all color attribute types.
Diffstat (limited to 'source/blender/blenkernel/intern/attribute.c')
-rw-r--r--source/blender/blenkernel/intern/attribute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/attribute.c b/source/blender/blenkernel/intern/attribute.c
index a25d00d4bff..307868ce6d9 100644
--- a/source/blender/blenkernel/intern/attribute.c
+++ b/source/blender/blenkernel/intern/attribute.c
@@ -292,7 +292,7 @@ int BKE_id_attributes_length(const ID *id, AttributeDomainMask domain_mask, Cust
return length;
}
-AttributeDomain BKE_id_attribute_domain(ID *id, const CustomDataLayer *layer)
+AttributeDomain BKE_id_attribute_domain(const ID *id, const CustomDataLayer *layer)
{
DomainInfo info[ATTR_DOMAIN_NUM];
get_domains(id, info);