temp-sculpt-roll-mapping: Fix deadlock

This commit is contained in:
Joseph Eagar 2023-01-24 08:54:12 -08:00
parent 3ca4ec3857
commit 3dd3a0f02e
1 changed files with 1 additions and 1 deletions

View File

@ -2697,7 +2697,7 @@ float SCULPT_brush_strength_factor(SculptSession *ss,
}
else {
const float point_3d[3] = {point_2d[0], point_2d[1], 0.0f};
avg = BKE_brush_sample_tex_3d(scene, br, mtex, point_3d, rgba, 0, ss->tex_pool);
avg = BKE_brush_sample_tex_3d(scene, br, mtex, point_3d, rgba, thread_id, ss->tex_pool);
}
}