Cleanup: indentation, wrapping

Mostly functions wrapping args, not confirming to our style guide.
This commit is contained in:
2019-03-15 08:53:22 +11:00
parent 395a0acdb8
commit 35b78d9807
100 changed files with 966 additions and 844 deletions

View File

@@ -519,10 +519,10 @@ void GeometryExporter::createVertexColorSource(std::string geom_id, Mesh *me)
MLoopCol *mlc = mloopcol + mpoly->loopstart;
for (int j = 0; j < mpoly->totloop; j++, mlc++) {
source.appendValues(
mlc->r / 255.0f,
mlc->g / 255.0f,
mlc->b / 255.0f,
mlc->a / 255.0f
mlc->r / 255.0f,
mlc->g / 255.0f,
mlc->b / 255.0f,
mlc->a / 255.0f
);
}
}