[Bf-blender-cvs] [b9ec7a92725] blender2.8: Eevee: Fix feedback loop warning.

Clément Foucault noreply at git.blender.org
Mon Mar 26 10:03:05 CEST 2018


Commit: b9ec7a92725e1567c12475a9eb59191edca1dc32
Author: Clément Foucault
Date:   Mon Mar 26 10:01:46 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBb9ec7a92725e1567c12475a9eb59191edca1dc32

Eevee: Fix feedback loop warning.

===================================================================

M	source/blender/draw/engines/eevee/eevee_temporal_sampling.c

===================================================================

diff --git a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c
index b441e51eb5f..acc1bff6331 100644
--- a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c
+++ b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c
@@ -306,7 +306,7 @@ void EEVEE_temporal_sampling_draw(EEVEE_Data *vedata)
 			SWAP(GPUTexture *, txl->color_post, txl->color_double_buffer);
 			effects->swap_double_buffer = false;
 			effects->source_buffer = txl->color_double_buffer;
-			effects->target_buffer = fbl->main_fb;
+			effects->target_buffer = fbl->main_color_fb;
 		}
 		else {
 			/* Save the depth buffer for the next frame.



More information about the Bf-blender-cvs mailing list