3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-27 11:55:25 +02:00

clang braces fix

This commit is contained in:
raveenajain 2019-06-27 11:52:43 -07:00
parent d6fb7f8a6f
commit 3a60bc6a13

View file

@ -366,7 +366,7 @@ void RenderShadowSetup::configure(const Config& configuration) {
void RenderShadowSetup::calculateBiases() {
// slope scaling values derived from ratio between original constantBias and slopeBias pairs
const std::array<float, 4> SLOPE_SCALES = { 2.7f, 3.0f, 3.7f, 3.5f };
const std::array<float, 4> SLOPE_SCALES = {{ 2.7f, 3.0f, 3.7f, 3.5f }};
const float CONVERT_BIAS = 100.0f;
const float MIN_SCALE_DIVISOR = 0.5f;