ClangFormat: Fixed the clang-format errors

This commit is contained in:
Subv 2016-11-30 09:37:37 -05:00
parent e5a7f2ef29
commit e3e4f27447
2 changed files with 10 additions and 6 deletions

View file

@ -946,8 +946,8 @@ static void ProcessTriangleInternal(const Shader::OutputVertex& v0, const Shader
// Blend the fog
for (unsigned i = 0; i < 3; i++) {
combiner_output[i] =
static_cast<u8>(fog_factor * combiner_output[i] + (1.0f - fog_factor) * fog_color[i]);
combiner_output[i] = static_cast<u8>(fog_factor * combiner_output[i] +
(1.0f - fog_factor) * fog_color[i]);
}
}