From 3e4b9d2b5a6479ef71cdedf980bcd714f4f94d56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Sat, 17 Jun 2017 00:08:03 +0200 Subject: Eevee: Initial implementation of planar reflections. Still pretty barebone: No roughness support, No normal distortion support. --- source/blender/draw/engines/eevee/eevee_engine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/draw/engines/eevee/eevee_engine.c') diff --git a/source/blender/draw/engines/eevee/eevee_engine.c b/source/blender/draw/engines/eevee/eevee_engine.c index c13351be43c..325758f4eb9 100644 --- a/source/blender/draw/engines/eevee/eevee_engine.c +++ b/source/blender/draw/engines/eevee/eevee_engine.c @@ -57,7 +57,7 @@ static void EEVEE_engine_init(void *ved) EEVEE_materials_init(); EEVEE_lights_init(sldata); - EEVEE_lightprobes_init(sldata); + EEVEE_lightprobes_init(sldata, vedata); EEVEE_effects_init(vedata); } @@ -134,7 +134,7 @@ static void EEVEE_draw_scene(void *vedata) EEVEE_draw_shadows(sldata, psl); /* Refresh Probes */ - EEVEE_lightprobes_refresh(sldata, psl); + EEVEE_lightprobes_refresh(sldata, vedata); /* Attach depth to the hdr buffer and bind it */ DRW_framebuffer_texture_detach(dtxl->depth); -- cgit v1.2.3