Cleanup: declare arrays arrays where possible

This commit is contained in:
2020-08-07 22:36:11 +10:00
parent 3db67fd670
commit b134434224
150 changed files with 313 additions and 302 deletions

View File

@@ -217,10 +217,10 @@ static void eevee_draw_scene(void *vedata)
}
while (loop_len--) {
float clear_col[4] = {0.0f, 0.0f, 0.0f, 0.0f};
const float clear_col[4] = {0.0f, 0.0f, 0.0f, 0.0f};
float clear_depth = 1.0f;
uint clear_stencil = 0x0;
uint primes[3] = {2, 3, 7};
const uint primes[3] = {2, 3, 7};
double offset[3] = {0.0, 0.0, 0.0};
double r[3];