summaryrefslogtreecommitdiffstats
path: root/src/RenderConfigs.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/RenderConfigs.hpp')
-rw-r--r--src/RenderConfigs.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/RenderConfigs.hpp b/src/RenderConfigs.hpp
index ef4c97d..0667bbe 100644
--- a/src/RenderConfigs.hpp
+++ b/src/RenderConfigs.hpp
@@ -62,6 +62,7 @@ public:
class Gbuffer {
std::shared_ptr<Gal::Texture> ssaoNoise;
std::unique_ptr<PostProcess> ssaoPass;
+ std::unique_ptr<PostProcess> ssaoBlurPass;
std::unique_ptr<PostProcess> lightingPass;
std::shared_ptr<Gal::Texture> depthStencil;
std::shared_ptr<Gal::Texture> color; //RGB - color
@@ -84,12 +85,14 @@ public:
void Render() {
ssaoPass->Render();
+ ssaoBlurPass->Render();
lightingPass->Render();
}
void Clear() {
geomFramebuffer->Clear();
ssaoPass->Clear();
+ ssaoBlurPass->Clear();
lightingPass->Clear();
}