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

@@ -171,7 +171,7 @@ void EEVEE_temporal_sampling_update_matrices(EEVEE_Data *vedata)
double ht_point[2];
double ht_offset[2] = {0.0, 0.0};
uint ht_primes[2] = {2, 3};
const uint ht_primes[2] = {2, 3};
BLI_halton_2d(ht_primes, ht_offset, effects->taa_current_sample - 1, ht_point);