Page 1 of 1
Shadow volume shader optimization
Posted: Thu May 27, 2010 9:51 pm
by Viz_Fuerte
Hi.
It's becoming an
obsession with the issue of how to get a good system of shadows with
Irrlicht, since it is the best engine for easy handling and powerful, but don't have a system of shadows decent.
I am working in a volume shadow system, that you are using a lot of games and engines, using a shader for create the extruded. If all goes well, in the future, one could integrate.
Improvement:
Current shadow volume - 104 FPS with 5472 triangles
GPU shadow volume - 540 FPS with 5472 triangles
Here I leave a link to the example, is not definitive and needs many adjustments.
http://www.elcreadordavid.hostei.com/pr ... rusion.zip
There are several flaws and is not to be, so I hope your comments and maybe solutions Smile
Posted: Fri May 28, 2010 1:31 am
by BlindSide
Cool, in my new system I will be adding some more options in the interface for shadowing types, so maybe I can integrate this and add GPU extrusion as an option.
Posted: Fri May 28, 2010 8:55 am
by Viz_Fuerte
If this works, I would like to be integrated directly into the source code of the
Irrlicht and not by any external system.
BlindSide@ I have nothing against your library, but is easier using the same command to generate the shadows as it is doing so far

Posted: Fri May 28, 2010 7:51 pm
by DeM0nFiRe
I tried it out, I actually get about 2,600 FPS constant, however, as you noted there are some flaws. The shadows were not continuous and there were some spots where shadows would not be cast at all. If you'd like, I can screenshot it, unless you already know about those two issues.
Oh, it might be relevant to note I am using ATI's preview OpenGL 4.0 drivers.
Posted: Fri May 28, 2010 10:49 pm
by Viz_Fuerte
I do not think you need to view an image that shows errors, i know that there are many

, but thanks.
The important thing is to know where the error if the effect or how to obtain the shadow.
Here I show the code in
GLSL, that I am using (only work in ARB):
Code: Select all
void main()
{
vec3 lightDir = (gl_ModelViewMatrix * gl_Vertex
- gl_LightSource[0].position).xyz;
// if the vertex is lit
float dt = dot(lightDir, gl_NormalMatrix * gl_Normal);
if ( dt <0.01 )
{
// don't move it
gl_Position = ftransform();
}
else
{
// move it far, is the light direction
vec4 fin = gl_ProjectionMatrix * (
gl_ModelViewMatrix * gl_Vertex
+ vec4(normalize(lightDir) * 100000.0, 0.0)
);
// if fin is behind the far plane
if ( fin.z > fin.w )
fin.z = fin.w; // move to the far plane (needed for z-fail algo.)
gl_Position = fin;
}
}
I hope someday to work properly

Posted: Sat May 29, 2010 1:06 am
by BlindSide
Viz_Fuerte wrote:If this works, I would like to be integrated directly into the source code of the
Irrlicht and not by any external system.
BlindSide@ I have nothing against your library, but is easier using the same command to generate the shadows as it is doing so far

I wasn't referring to my library XEffects, but the shadow system I am working on for Irrlicht.
Posted: Thu Jun 03, 2010 1:34 am
by grumpymonkey
wow this is really good, I got +1000 FPS with 15k triangles
But it did seem a little buggy, idk but it seems like cylinder in the middle is cutting up the shadows, or, has an inverted shadow :\
btw, thats one creepy ass avatar xD
Posted: Thu Jun 03, 2010 9:10 am
by devsh
i think you're kinda missing the point with this shadowing, as I can see that the shadows are being drawn ON. A real shadow prevents a direct light ray from hitting a surface, therefore a real shadow would cause the phong or lambertian shading function to return 0 for both specular and diffuse. As I can see from the image both are present within the shadow but are dimmed down.
Posted: Thu Jun 03, 2010 11:05 am
by BlindSide
He just optimized the standard shadow system in Irrlicht so it doesn't make sense that he should take all that into account.
Posted: Thu Jun 03, 2010 4:18 pm
by Viz_Fuerte
Hi
devsh@
As say
BlindSide, I just want optimize the creation of shadows as does the Irrlicht. I know how to create shadows using the stencil buffer to make them look like
Doom3, but that requires more complex and multipass, something that sounds not good.
For now I'm still "trying" to make this work but I am not very professional in this.
Re: Shadow volume shader optimization
Posted: Mon Sep 19, 2011 12:14 pm
by Erelas
This looks good! Any chance you could re-upload this?
I would like to see if I can integrate this into our game.
Re: Shadow volume shader optimization
Posted: Wed Jun 13, 2012 9:01 am
by nespa
Hi,
has someone the source for the 1'st post ? ( ShadowVolumeExtrusion.zip )
Re: Shadow volume shader optimization
Posted: Wed Jun 13, 2012 10:31 am
by zerosang
Re: Shadow volume shader optimization
Posted: Wed Jun 13, 2012 10:48 am
by nespa
many many thanks !!!!
Re: Shadow volume shader optimization
Posted: Tue May 21, 2024 7:08 pm
by Noiecity