Here are 2 new scenes for the fullscreen mode, and for the version >= 1.2.0.64
It shows how to use the framebuffers, the uniforms and multiple textures with one shader.
the screenshots are showing the 2 effects one with / without the antiAlias (check the edges of the model)
1. shadowBlob
http://www.virtuagirl.com/software/scenes/ShadowBlob.zipA soft shadow is created with a multi-pass gaussian blur shader (1st pass: horizontal blur, and 2nd pass the vertical blur and a color change). The same shader is used twice, with different parameters.
Note that a border is used there, to avoid lines at the edges of the clip when we blur it.
2. bloom
http://www.virtuagirl.com/software/scenes/Bloom.zipThe same technic is used (multi-pass shaders).
First, an experimental anti-alias (FXAA) shader is applied on the Clip (see the screenshot).
Then we make a ‘bloom’ effect on the clip (bright pass filter, then blurred with the 2 pass technic), and then combined with the Clip.
The light spots are also combined with the final result to alter the clip colors.
hope you will enjoy it :)