From 8d74af164e876f2722d7fdb355f3ca50c729c852 Mon Sep 17 00:00:00 2001 From: Miguel Pozo Date: Tue, 9 Jan 2024 16:25:24 +0100 Subject: [PATCH] Fix: EEVEE-Next: Update gbuffer_fb bind_ex Ensure it's in sync with the framebuffer configuration --- source/blender/draw/engines/eevee_next/eevee_pipeline.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/draw/engines/eevee_next/eevee_pipeline.cc b/source/blender/draw/engines/eevee_next/eevee_pipeline.cc index cf227eb99fc..4c6460cca31 100644 --- a/source/blender/draw/engines/eevee_next/eevee_pipeline.cc +++ b/source/blender/draw/engines/eevee_next/eevee_pipeline.cc @@ -725,8 +725,9 @@ void DeferredLayer::render(View &main_view, {GPU_LOADACTION_LOAD, GPU_STOREACTION_STORE}, /* Depth */ {GPU_LOADACTION_LOAD, GPU_STOREACTION_STORE}, /* Combined */ {GPU_LOADACTION_CLEAR, GPU_STOREACTION_STORE, {0}}, /* GBuf Header */ + {GPU_LOADACTION_DONT_CARE, GPU_STOREACTION_STORE}, /* GBuf Normal*/ {GPU_LOADACTION_DONT_CARE, GPU_STOREACTION_STORE}, /* GBuf Closure */ - {GPU_LOADACTION_DONT_CARE, GPU_STOREACTION_STORE}, /* GBuf Color */ + {GPU_LOADACTION_DONT_CARE, GPU_STOREACTION_STORE}, /* GBuf Closure 2*/ }); }