VS_FARCLIPVEC VS_RenderScreen( float4 vPos : POSITION,
float2 vTexCoord0 : TEXCOORD0)
{
VS_FARCLIPVEC OUT;
OUT.Position = vPos;
float fTexX = (vTexCoord0.x * 2 - 1);
float fTexY = ((1- vTexCoord0.y) * 2 - 1);
float4 fProjPoint = float4(fTexX,fTexY,1,1);
float4 fFarClipVector = mul(fProjPoint, g_mProjectionInverse);
fFarClipVector.xyz /= fFarClipVector.w;
OUT.vTexCoord0 = vTexCoord0;
OUT.fFarClipVector = fFarClipVector;
float4 fLightPosVS = mul(float4(g_singleLightPos,1), g_mView);
OUT.fLightPosVS = fLightPosVS.xyz / fLightPosVS.w;
return OUT;
}
float4 PS_CreateShadowBufferPlanets( VS_FARCLIPVEC IN ) : COLOR0
{
float fDepth = tex2D(Tex0Sampler, IN.vTexCoord0).r;
if(fDepth == 1.0)
discard;
float3 vPosVS = IN.fFarClipVector.xyz * fDepth;
float dist = length(vPosVS - g_vLightPosVS.xyz);
for(int i = 0; i < g_iPlanetCount; i++)
{
float3 p1 = vPosVS;
float3 p2 = g_vLightPosVS.xyz;
float3 p3 = g_vPlanetPositions[i].xyz;
float r = g_fPlanetRadii[i];
float3 d = normalize(p2 - p1);
float a = dot(d, d);
float b = 2.0 * dot(d, p1 - p3);
float c = dot(p3, p3) + dot(p1, p1) - 2.0 * dot(p3, p1) - r*r;
float discriminant = b*b - 4*a*c;
if(discriminant >= 0)
{
float smoothing = sqrt(discriminant) / (4*a);
float dist2 = -b / (4*a) - smoothing;
if(dist2 > 0 && dist2 < dist)
return smoothing / r * 7;
}
}
discard;
return 0;
}
This whole code is used to render planet shadows regardless of distance and without using shadow maps. Performance isn't ideal, but I've selected this code because it has a minimal amount of inputs. This is largely working as expected, except for one thing: the shadows that are calculated shake, badly. Whenever I rotate the camera, even if just a little bit, the shadows tend to slide a bit in one direction, then snap back to their original location. Rinse and repeat as the camera rotates. If the camera moves, the effect still appears, but it takes a very, very large amount of movement before just one "snapping" happens.
If the camera doesn't move, the shadows are pixel-accurate and don't have any visible defect. The g_vPlanetPositions and g_vLightPosVS use world-space XYZ coords which are projected into the camera's view space prior to the shader running. I do not believe that those are problematic, because I also have another shadow algorithm (this one using cascade shadow maps) that does the same thing.
Therefore, I am suspecting one of two things: either my view matrix or my projection matrix is wrong. I do not know which would be the case. In order to calculate my inverse projection matrix, I just use D3DXMatrixInverse. The initial projection matrix is a simple D3DXMatrixPerspectiveFovLH call with a field of view between 70 and 90 degrees.
The view matrices are calculated from the camera position and a rotation matrix.
It must be said that the scale of the scene is fairly large. The distance between the light and the casters can be in the 500,000 units range, same for the receivers. I am uncertain whether the entire thing is caused by floating point precision issues, because my shadow maps have a much higher accuracy than the steps I notice and the rest of the scene renders fine.
Does anyone have pointers as for what could cause this? I can paste more code as necessary, just ask.

Find content
Not Telling








