Cleanup: quiet unused parameter warning in lambda function

Copy-paste error in rB039429faeb41.
This commit is contained in:
Philipp Oeser 2022-09-30 10:26:12 +02:00
parent dbc097d6b8
commit 6865aab133
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ struct PBVHBatches {
uchar fset_color[3] = {255, 255, 255};
foreach_faces(
[&](int /*buffer_i*/, int /*tri_i*/, int /*vertex_i*/, const MLoopTri *tri) {
[&](int /*buffer_i*/, int /*tri_i*/, int /*vertex_i*/, const MLoopTri * /*tri*/) {
*static_cast<uchar3 *>(GPU_vertbuf_raw_step(&access)) = fset_color;
});
}