
Shortly, how I implement bloom in code:
1. Add four materials types using 'addHighLevelShaderMaterialFromFiles()'. The first "lighting_mat" is used for rendering all scene with the yellow sphere which is affected by the phong lighting. The second "bfe_mat" is used to render those two lights with just a white color. In third "blur_mat" the gaussian blurring is executed. And four "final_mat" is used for rendering the total scene.
2. Render the sphere and camera scene nodes and then two lights meshes (without bloom) into the "BaseLightRT".
3. Blur the obtained image in the cycle using ping-pong technique: render alternately in the "BlurRT" and "BlurRT2" textures using the previous result blurring them horizontally and vertically.
4. Combine "BaseLightRT" and "BlurRT".
My guess is while blurring in the fragment shader it takes surrounding pixels colors from the background (which is blue color) of the mBrightTex and mix them with the current kernel. However, it is strange since I render to that texture skybox with wooden textures, so its pixels should be taken into account.
Still one weird thing that I discovered is 'setRenderTargetEx()' always sets a blue color as the clear one disregarding passed clearColor param (in my case is black).
My source:
https://drive.google.com/file/d/1PYIUqe ... sp=sharing