Cleanup: comment out unused lambda parameter

This commit is contained in:
Joseph Eagar 2022-10-14 23:03:10 -07:00
parent b7ea79fde7
commit ebe9804cfa
Notes: blender-bot 2023-08-24 01:28:18 +02:00
Referenced by issue #111451, Regression: Damaged normals in sculpting with Multires modifier
1 changed files with 4 additions and 3 deletions

View File

@ -397,9 +397,10 @@ struct PBVHBatches {
});
}
else {
foreach_grids([&](int /*x*/, int /*y*/, int /*grid_index*/, CCGElem *elems[4], int i) {
*static_cast<uchar *>(GPU_vertbuf_raw_step(&access)) = 0;
});
foreach_grids(
[&](int /*x*/, int /*y*/, int /*grid_index*/, CCGElem * /*elems*/[4], int i) {
*static_cast<uchar *>(GPU_vertbuf_raw_step(&access)) = 0;
});
}
break;