Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-03-20 10:17:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-20 10:25:27 +0300
commit4fa904e91c78148ba39ac40371d7680294e225bf (patch)
treeec6c1c6f6a1263e29900bedc9e876d941cc3febf /source/blender/draw/engines/eevee/eevee_temporal_sampling.c
parentdb5a82302cb322b24d0e0a315e6af499706e8aca (diff)
Cleanup: use lowercase for dimensions in function names
Most API's already use this convention.
Diffstat (limited to 'source/blender/draw/engines/eevee/eevee_temporal_sampling.c')
-rw-r--r--source/blender/draw/engines/eevee/eevee_temporal_sampling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c
index 592d11916ac..fd3a23b36e0 100644
--- a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c
+++ b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c
@@ -231,7 +231,7 @@ int EEVEE_temporal_sampling_init(EEVEE_ViewLayerData *UNUSED(sldata), EEVEE_Data
double ht_offset[2] = {0.0, 0.0};
uint ht_primes[2] = {2, 3};
- BLI_halton_2D(ht_primes, ht_offset, effects->taa_current_sample - 1, ht_point);
+ BLI_halton_2d(ht_primes, ht_offset, effects->taa_current_sample - 1, ht_point);
EEVEE_temporal_sampling_matrices_calc(effects, viewmat, persmat, ht_point);