Advertisement

Latest Blur Activity

enigma_dev
April 09, 2022 02:23 PM
DevBlog 22 - Tighten Up The Graphics (Adding HDR, Bloom, Normal Maps, and more) [OpenGL 3.3]



I've refactored the rendering system in my engine.

The old way of rendering was complete in SDR.  

In this update I created a separate off screen framebuffer that everything is rendered to first.

This offscreen framebuffer is a float framebuffer, and can store values outside of the normal [0,1] r…

10,766 views
Advertisement
How to make blurry reflections without using LODs?

“IBL” just means you're getting lighting from an image. Any method for sampling lighting from an image is IBL, what the OP is doing here definitely qualifies. There are of course many other options for implementing IBL, such as pre-filtered cubemaps and other related techniques.

If your image has sm…

14,446 views

Try to do the following:

1. Start with something very simple like hardcoding the Gaussian coefficients in a table and iterate on these values in the fragment shader. You can use a Pascal triangle to get discrete Gaussian coefficients. Here’s some glsl fragment shader code to get you started:

in VS_OU…
20,356 views
Advertisement
Advertisement