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-08-24 01:50:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-24 05:06:58 +0300
commit67d9647ae4e17bb14d89933e392381e01ebae6a0 (patch)
tree6bfdf64c7cdc1b2215e571b4f86906054758925a /source/blender/draw/engines/gpencil/gpencil_cache_utils.c
parenta68e8ac993a169b63365ffc099d3f01581f6ce0b (diff)
Cleanup: use eval as a suffix
Follow conversion already used in most places.
Diffstat (limited to 'source/blender/draw/engines/gpencil/gpencil_cache_utils.c')
-rw-r--r--source/blender/draw/engines/gpencil/gpencil_cache_utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/draw/engines/gpencil/gpencil_cache_utils.c b/source/blender/draw/engines/gpencil/gpencil_cache_utils.c
index ea806c3da90..33e6d73eeeb 100644
--- a/source/blender/draw/engines/gpencil/gpencil_cache_utils.c
+++ b/source/blender/draw/engines/gpencil/gpencil_cache_utils.c
@@ -351,9 +351,9 @@ void DRW_gpencil_freecache(struct Object *ob)
/* clear all frames evaluated data */
for (int i = 0; i < ob->runtime.gpencil_tot_layers; i++) {
- bGPDframe *eval_gpf = &ob->runtime.gpencil_evaluated_frames[i];
- BKE_gpencil_free_frame_runtime_data(eval_gpf);
- eval_gpf = NULL;
+ bGPDframe *gpf_eval = &ob->runtime.gpencil_evaluated_frames[i];
+ BKE_gpencil_free_frame_runtime_data(gpf_eval);
+ gpf_eval = NULL;
}
ob->runtime.gpencil_tot_layers = 0;