From 6db1fb197c169633bef9b23542464f89e9c4dbe6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 21 Mar 2021 13:18:20 +1100 Subject: Cleanup: spelling, doxygen comment formatting --- source/blender/draw/engines/eevee/eevee_bloom.c | 3 ++- source/blender/draw/engines/eevee/eevee_occlusion.c | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'source/blender/draw') diff --git a/source/blender/draw/engines/eevee/eevee_bloom.c b/source/blender/draw/engines/eevee/eevee_bloom.c index 9b8f7ddab0c..cc6e75859c8 100644 --- a/source/blender/draw/engines/eevee/eevee_bloom.c +++ b/source/blender/draw/engines/eevee/eevee_bloom.c @@ -171,7 +171,8 @@ void EEVEE_bloom_cache_init(EEVEE_ViewLayerData *UNUSED(sldata), EEVEE_Data *ved psl->bloom_accum_ps = NULL; if ((effects->enabled_effects & EFFECT_BLOOM) != 0) { - /** Bloom algorithm + /** + * Bloom Algorithm * * Overview: * - Down-sample the color buffer doing a small blur during each step. diff --git a/source/blender/draw/engines/eevee/eevee_occlusion.c b/source/blender/draw/engines/eevee/eevee_occlusion.c index 8f8317498ec..3f198063c47 100644 --- a/source/blender/draw/engines/eevee/eevee_occlusion.c +++ b/source/blender/draw/engines/eevee/eevee_occlusion.c @@ -158,9 +158,10 @@ void EEVEE_occlusion_cache_init(EEVEE_ViewLayerData *sldata, EEVEE_Data *vedata) DefaultTextureList *dtxl = DRW_viewport_texture_list_get(); if ((effects->enabled_effects & EFFECT_GTAO) != 0) { - /** Occlusion algorithm overview + /** + * Occlusion Algorithm Overview: * - * We separate the computation into 2 steps. + * We separate the computation into 2 steps. * * - First we scan the neighborhood pixels to find the maximum horizon angle. * We save this angle in a RG8 array texture. -- cgit v1.2.3