Try to improve instancing shadows
This commit is contained in:
@@ -10,7 +10,7 @@ layout (std140, binding = 1) uniform LightsBlock
|
||||
} ;
|
||||
vec3 lightPos = posBool[gl_InvocationID].xyz ;
|
||||
float theBool = posBool[gl_InvocationID].w;
|
||||
// this code is duplicated in lineShadow.geom, should not be changed on its own
|
||||
// this code is duplicated in shadow/edge.geom, should not be changed on its own
|
||||
vec4 projNear (vec4 pos)
|
||||
{
|
||||
// note we project to a specific height
|
||||
|
||||
+74
-67
@@ -1,78 +1,85 @@
|
||||
#version 450 core
|
||||
layout (lines_adjacency) in;
|
||||
layout (invocations = 20) in;
|
||||
layout (triangle_strip, max_vertices = 4) out;
|
||||
layout (std140, binding = 0) uniform TheMat { mat4 theMat; } ;
|
||||
layout (std140, binding = 1) uniform LightsBlock
|
||||
{
|
||||
vec4 posBool[20];
|
||||
vec4 colRad[20];
|
||||
} ;
|
||||
vec3 lightPos1 = posBool[gl_InvocationID].xyz;
|
||||
layout(lines_adjacency) in;
|
||||
layout(invocations = 20) in;
|
||||
layout(triangle_strip, max_vertices = 4) out;
|
||||
layout(std140, binding = 0) uniform TheMat { mat4 theMat; };
|
||||
layout(std140, binding = 1) uniform LightsBlock {
|
||||
vec4 posBool[20];
|
||||
vec4 colRad[20];
|
||||
};
|
||||
vec3 lightPos = posBool[gl_InvocationID].xyz;
|
||||
float theBool = posBool[gl_InvocationID].w;
|
||||
vec4 shift (vec4 p) { return (vec4 (p.xyz + (100000*(p.xyz-lightPos1)), 1));} ;
|
||||
vec4 shiftBy (float x,vec4 p) { return (vec4 (lightPos1 + (x*normalize(p.xyz-lightPos1)), 1));} ;
|
||||
// copied from lighting/cap.geom, should not be changed on its own
|
||||
vec4 projNear (vec4 pos)
|
||||
{
|
||||
// note we project to a specific height
|
||||
// this is quite brittle, not ideal
|
||||
vec3 dir = pos.xyz - lightPos1 ;
|
||||
float a = (140 - pos.z) / dir.z ;
|
||||
vec2 xy = (pos.xyz + a * dir).xy ;
|
||||
return vec4 ( xy, 140 , 1) ;
|
||||
} ;
|
||||
vec4 shiftNear (vec4 pos)
|
||||
{ vec4 sp = shift(pos);
|
||||
if (sp.z > 140)
|
||||
{ return projNear(pos) ; }
|
||||
else
|
||||
{ return sp ; }
|
||||
} ;
|
||||
vec4 f (vec4 p) {return (theMat * p);} ;
|
||||
void main()
|
||||
{
|
||||
if (theBool == 1){
|
||||
// float ru2 = radiusUniform * radiusUniform ;
|
||||
float ru = colRad[gl_InvocationID].w ;
|
||||
float ru2 = ru * ru;
|
||||
float rad = colRad[gl_InvocationID].w;
|
||||
vec4 shift(vec4 p) { return (vec4(p.xyz + (100000 * (p.xyz - lightPos)), 1)); };
|
||||
vec4 shiftBy(float x, vec4 p) {
|
||||
return (vec4(lightPos + (x * normalize(p.xyz - lightPos)), 1));
|
||||
};
|
||||
vec4 shift1(vec4 p) {
|
||||
return (vec4(lightPos + (rad * normalize(p.xyz - lightPos)), 1));
|
||||
};
|
||||
// copied from shadow/cap.geom, should not be changed on its own
|
||||
vec4 projNear(vec4 pos) {
|
||||
// note we project to a specific height
|
||||
// this is quite brittle, not ideal
|
||||
vec3 dir = pos.xyz - lightPos;
|
||||
float a = (140 - pos.z) / dir.z;
|
||||
vec2 xy = (pos.xyz + a * dir).xy;
|
||||
return vec4(xy, 140, 1);
|
||||
};
|
||||
vec4 shiftNear(vec4 pos) {
|
||||
vec4 sp = shift(pos);
|
||||
if (sp.z > 140) {
|
||||
return projNear(pos);
|
||||
} else {
|
||||
return sp;
|
||||
}
|
||||
};
|
||||
void main() {
|
||||
if (theBool == 1) {
|
||||
vec4 p0 = gl_in[0].gl_Position;
|
||||
vec4 p1 = gl_in[1].gl_Position;
|
||||
vec4 mid = 0.5*(p0 + p1);
|
||||
vec4 mid = 0.5 * (p0 + p1);
|
||||
vec3 n0a = gl_in[2].gl_Position.xyz;
|
||||
vec3 n1a = gl_in[3].gl_Position.xyz;
|
||||
vec3 n0 = cross(p1.xyz - p0.xyz, n0a - p0.xyz) ;
|
||||
vec3 n1 = cross(p0.xyz - p1.xyz, n1a - p1.xyz) ;
|
||||
|
||||
//vec3 n2 = n0 + n1; // assumes the summands are normalized
|
||||
vec3 lightDir = p0.xyz - lightPos1.xyz;
|
||||
vec3 lightDir2 = p1.xyz - lightPos1.xyz;
|
||||
// first test if the edge is part of the silhouette
|
||||
vec3 n0 = cross(p1.xyz - p0.xyz, n0a - p0.xyz);
|
||||
vec3 n1 = cross(p0.xyz - p1.xyz, n1a - p1.xyz);
|
||||
vec3 lightDir = p0.xyz - lightPos.xyz;
|
||||
vec3 lightDir2 = p1.xyz - lightPos.xyz;
|
||||
// test if the edge is part of the silhouette
|
||||
// that is, if the normals of the faces connected by the edge point are in
|
||||
// "different directions" wrt the light direction
|
||||
if ( dot(n0 , lightDir) * dot(n1 , lightDir) <= 0 &&
|
||||
(dot(lightDir,lightDir) < ru2 || dot(lightDir2,lightDir2) < ru2) )
|
||||
// using <= rather than < seems to get rid of overlapping shadow
|
||||
// artefacts
|
||||
if (dot(n0, lightDir) * dot(n1, lightDir) <= 0 &&
|
||||
(dot(lightDir, lightDir) < rad * rad ||
|
||||
dot(lightDir2, lightDir2) < rad * rad))
|
||||
// using <= rather than < seems to get rid of overlapping shadow
|
||||
// artefacts
|
||||
{
|
||||
vec4 p2 = shiftNear(p0);
|
||||
vec4 p3 = shiftNear(p1);
|
||||
if ( dot(n0 , lightDir) > 0)
|
||||
{
|
||||
gl_Position = f(p0); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = f(p1); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = f(p2); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = f(p3); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
}
|
||||
else
|
||||
{
|
||||
gl_Position = f(p1); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = f(p0); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = f(p3); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = f(p2); gl_Layer = gl_InvocationID; EmitVertex();
|
||||
}
|
||||
EndPrimitive();
|
||||
vec4 p2 = shiftNear(p0);
|
||||
vec4 p3 = shiftNear(p1);
|
||||
gl_Position = theMat * p0;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
if (dot(n0, lightDir) > 0) {
|
||||
gl_Position = theMat * p1;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = theMat * p2;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
} else {
|
||||
gl_Position = theMat * p2;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = theMat * p1;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
}
|
||||
gl_Position = theMat * p3;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
EndPrimitive();
|
||||
} else {
|
||||
}
|
||||
else { }
|
||||
}else {}
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,54 +1,65 @@
|
||||
#version 450 core
|
||||
layout (points) in;
|
||||
layout (invocations = 20) in;
|
||||
layout (triangle_strip, max_vertices = 8) out;
|
||||
layout (std140, binding = 0) uniform TheMat { mat4 theMat; } ;
|
||||
layout (std140, binding = 1) uniform LightsBlock
|
||||
{
|
||||
vec4 posBool[20];
|
||||
vec4 colRad[20];
|
||||
} ;
|
||||
layout(points) in;
|
||||
layout(invocations = 20) in;
|
||||
layout(triangle_strip, max_vertices = 8) out;
|
||||
layout(std140, binding = 0) uniform TheMat { mat4 theMat; };
|
||||
layout(std140, binding = 1) uniform LightsBlock {
|
||||
vec4 posBool[20];
|
||||
vec4 colRad[20];
|
||||
};
|
||||
vec3 lightPos = posBool[gl_InvocationID].xyz;
|
||||
float theBool = posBool[gl_InvocationID].w;
|
||||
vec4 shift (vec4 p)
|
||||
{ return vec4 (p.xy + (200 * (p.xy-lightPos.xy)), 0 , 1);
|
||||
}
|
||||
float isLHS (vec2 startV, vec2 testV)
|
||||
{
|
||||
return sign( -startV.x * testV.y + startV.y * testV.x);
|
||||
vec4 shift(vec4 p) { return vec4(p.xy + (200 * (p.xy - lightPos.xy)), 0, 1); }
|
||||
float isLHS(vec2 startV, vec2 testV) {
|
||||
return sign(-startV.x * testV.y + startV.y * testV.x);
|
||||
}
|
||||
// construct a box with openings on bottom face and face away from wall
|
||||
void main()
|
||||
{
|
||||
vec4 p1 = vec4 (gl_in[0].gl_Position.xy,0,1);
|
||||
vec4 p2 = vec4 (gl_in[0].gl_Position.zw,0,1);
|
||||
if (theBool==1 && isLHS (p1.xy - lightPos.xy, p2.xy - lightPos.xy) < 0)
|
||||
{
|
||||
vec4 p3 = vec4 (p1.xy,100,1);
|
||||
vec4 p4 = vec4 (p2.xy,100,1);
|
||||
vec4 p5 = shift(p1);
|
||||
vec4 p6 = shift(p2);
|
||||
vec4 p7 = vec4 (p6.xy,100,1);
|
||||
vec4 p8 = vec4 (p5.xy,100,1);
|
||||
void main() {
|
||||
vec4 p1 = vec4(gl_in[0].gl_Position.xy, 0, 1);
|
||||
vec4 p2 = vec4(gl_in[0].gl_Position.zw, 0, 1);
|
||||
if (theBool == 1 && isLHS(p1.xy - lightPos.xy, p2.xy - lightPos.xy) < 0) {
|
||||
vec4 p3 = vec4(p1.xy, 100, 1);
|
||||
vec4 p4 = vec4(p2.xy, 100, 1);
|
||||
vec4 p5 = shift(p1);
|
||||
vec4 p6 = shift(p2);
|
||||
vec4 p7 = vec4(p6.xy, 100, 1);
|
||||
vec4 p8 = vec4(p5.xy, 100, 1);
|
||||
|
||||
vec4 a1 = theMat * p1;
|
||||
vec4 a2 = theMat * p2;
|
||||
vec4 a3 = theMat * p3;
|
||||
vec4 a4 = theMat * p4;
|
||||
vec4 a5 = theMat * p5;
|
||||
vec4 a6 = theMat * p6;
|
||||
vec4 a7 = theMat * p7;
|
||||
vec4 a8 = theMat * p8;
|
||||
vec4 a1 = theMat * p1;
|
||||
vec4 a2 = theMat * p2;
|
||||
vec4 a3 = theMat * p3;
|
||||
vec4 a4 = theMat * p4;
|
||||
vec4 a5 = theMat * p5;
|
||||
vec4 a6 = theMat * p6;
|
||||
vec4 a7 = theMat * p7;
|
||||
vec4 a8 = theMat * p8;
|
||||
|
||||
gl_Position = a1; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a5; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a3; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a8; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a4; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a7; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a2; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a6; gl_Layer = gl_InvocationID; EmitVertex();
|
||||
gl_Position = a1;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = a5;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = a3;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = a8;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = a4;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = a7;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = a2;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
gl_Position = a6;
|
||||
gl_Layer = gl_InvocationID;
|
||||
EmitVertex();
|
||||
|
||||
EndPrimitive();
|
||||
} else {}
|
||||
EndPrimitive();
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user