Merge branch 'blender-v3.6-release'

This commit is contained in:
Hans Goudey 2023-06-08 15:59:10 -04:00
commit 38833a20a6
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ void BKE_remesh_reproject_vertex_paint(Mesh *target, const Mesh *source)
* source mesh. */
const int src_vert = nearest_src_verts[dst_vert];
T value;
typename attribute_math::DefaultMixer<T> mixer({&value, 1});
typename blender::bke::attribute_math::DefaultMixer<T> mixer({&value, 1});
for (const int corner : source_lmap[src_vert]) {
mixer.mix_in(0, src_typed[corner]);
}