diff --git a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c index 4c5b6ae5f15..ae2d22cdafa 100644 --- a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c +++ b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c @@ -253,8 +253,11 @@ int EEVEE_temporal_sampling_init(EEVEE_ViewLayerData *UNUSED(sldata), EEVEE_Data const DRWContextState *draw_ctx = DRW_context_state_get(); const Scene *scene_eval = DEG_get_evaluated_scene(draw_ctx->depsgraph); + bool painting = false; + if (draw_ctx->rv3d) + painting = draw_ctx->rv3d->rflag & RV3D_PAINTING; - if ((scene_eval->eevee.taa_samples != 1) || DRW_state_is_image_render()) { + if (((scene_eval->eevee.taa_samples != 1) || DRW_state_is_image_render()) && !painting) { float persmat[4][4]; if (!DRW_state_is_image_render() && (scene_eval->eevee.flag & SCE_EEVEE_TAA_REPROJECTION)) {