2022-10-30 00:00:17 +08:00
|
|
|
#version 450
|
2023-03-08 21:23:03 +08:00
|
|
|
#extension GL_EXT_nonuniform_qualifier : require
|
2022-10-30 00:00:17 +08:00
|
|
|
|
|
|
|
struct DirectionalLightStruct
|
|
|
|
{
|
2023-03-06 00:02:06 +08:00
|
|
|
vec4 directionWorld;
|
2022-10-30 00:00:17 +08:00
|
|
|
vec3 direction;
|
|
|
|
uint isActive;
|
|
|
|
uint cullingMask;
|
|
|
|
vec4 diffuseColor;
|
2023-01-07 17:45:49 +08:00
|
|
|
mat4 pvMatrix;
|
2023-01-09 11:06:10 +08:00
|
|
|
uint shadowData;
|
2022-10-30 00:00:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct AmbientLightStruct
|
|
|
|
{
|
|
|
|
vec4 ambientColor;
|
|
|
|
float strength;
|
|
|
|
uint isActive;
|
|
|
|
uint cullingMask;
|
|
|
|
};
|
|
|
|
|
|
|
|
layout(local_size_x = 16, local_size_y = 16) in;
|
2022-12-28 20:47:20 +08:00
|
|
|
layout(set = 3, binding = 0, rgba32f) uniform image2D positions;
|
|
|
|
layout(set = 3, binding = 1, rgba32f) uniform image2D normals;
|
|
|
|
layout(set = 3, binding = 2, rgba8) uniform image2D albedo;
|
2023-03-06 00:02:06 +08:00
|
|
|
layout(set = 3, binding = 3, rgba32ui) uniform uimage2D lightLayerData;
|
2022-12-28 20:47:20 +08:00
|
|
|
layout(set = 3, binding = 4, r8) uniform image2D ssaoBlurredImage;
|
2023-01-11 10:35:29 +08:00
|
|
|
layout(set = 3, binding = 5, rgba8) uniform image2D positionWorldSpace;
|
|
|
|
layout(set = 3, binding = 6, rgba8) uniform image2D targetImage;
|
2023-02-22 16:39:21 +08:00
|
|
|
layout(set = 3, binding = 7, rgba8) uniform image2D objectVFXImage;
|
2022-10-30 00:00:17 +08:00
|
|
|
|
2023-01-07 17:45:49 +08:00
|
|
|
layout (set = 4, binding = 0) uniform sampler2D shadowMaps[]; // for textures (global)
|
|
|
|
|
2022-10-30 00:00:17 +08:00
|
|
|
layout(set = 1, binding = 0) uniform LightCounts
|
|
|
|
{
|
|
|
|
uint directionalLights;
|
|
|
|
uint pointLights;
|
|
|
|
uint spotLights;
|
|
|
|
uint ambientLights;
|
|
|
|
|
|
|
|
} lightCounts;
|
|
|
|
|
|
|
|
layout(std430, set = 1, binding = 1) buffer DirectionalLightData
|
|
|
|
{
|
|
|
|
DirectionalLightStruct dLightData[];
|
|
|
|
} DirLightData;
|
|
|
|
|
|
|
|
layout(std430, set = 1, binding = 4) buffer AmbientLightData
|
|
|
|
{
|
|
|
|
AmbientLightStruct aLightData[];
|
|
|
|
} AmbLightData;
|
|
|
|
|
2023-02-15 21:34:22 +08:00
|
|
|
float LinStep (float val, float low, float high)
|
|
|
|
{
|
|
|
|
return clamp ((val - low)/(high - low), 0.0f, 1.0f);
|
|
|
|
}
|
|
|
|
|
2023-03-06 00:02:06 +08:00
|
|
|
float CalcShadowValue (sampler2D shadowMap, vec4 worldSpaceFragPos, mat4 lightPV, vec3 worldNormal, vec3 lightDir)
|
2023-01-11 10:35:29 +08:00
|
|
|
{
|
2023-02-15 21:34:22 +08:00
|
|
|
// clip space for fragment from light view space
|
2023-01-11 10:35:29 +08:00
|
|
|
vec4 fragPosLightPOV = lightPV * worldSpaceFragPos;
|
2023-02-15 21:34:22 +08:00
|
|
|
|
|
|
|
// Perform perspective division and convert to 0 to 1 range
|
2023-01-11 10:35:29 +08:00
|
|
|
vec3 converted = (fragPosLightPOV.xyz / fragPosLightPOV.w) * vec3(0.5f) + vec3(0.5f);
|
2023-01-11 20:04:53 +08:00
|
|
|
|
2023-02-15 21:34:22 +08:00
|
|
|
vec2 moments = texture(shadowMap, converted.xy).xy;
|
2023-01-11 20:04:53 +08:00
|
|
|
|
|
|
|
if (converted.x < 0.0f || converted.x > 1.0f || converted.y < 0.0f || converted.y > 1.0f)
|
|
|
|
return 1.0f;
|
|
|
|
|
2023-03-06 00:02:06 +08:00
|
|
|
float returnVal = 0.0f;
|
|
|
|
|
|
|
|
float worldNormalDotLight = dot (normalize (worldNormal), normalize(lightDir));
|
|
|
|
|
|
|
|
if (worldNormalDotLight < 0.0f)
|
|
|
|
return 0.7f;
|
|
|
|
|
2023-02-15 21:34:22 +08:00
|
|
|
if (fragPosLightPOV.z > moments.x && fragPosLightPOV.w > 0.0f)
|
2023-01-11 20:04:53 +08:00
|
|
|
{
|
2023-02-15 21:34:22 +08:00
|
|
|
float p = step (fragPosLightPOV.z, moments.x);
|
|
|
|
float variance = max (moments.y - (moments.x * moments.x), 0.00002f);
|
|
|
|
|
|
|
|
float d = fragPosLightPOV.z - moments.x;
|
|
|
|
float pMax = LinStep (variance / (variance + (d * d)), 0.9f, 1.0f);
|
2023-03-06 00:02:06 +08:00
|
|
|
|
|
|
|
returnVal = min (max (p, pMax) + 0.7f, 1.0f);
|
|
|
|
|
|
|
|
return returnVal;
|
|
|
|
|
2023-01-11 20:04:53 +08:00
|
|
|
}
|
2023-03-03 22:01:34 +08:00
|
|
|
else if (fragPosLightPOV.z > 1.0f)
|
|
|
|
{
|
|
|
|
return 0.0f;
|
|
|
|
}
|
2023-03-06 00:02:06 +08:00
|
|
|
|
|
|
|
return 1.0f;
|
|
|
|
|
2023-01-11 10:35:29 +08:00
|
|
|
}
|
2023-01-11 08:25:38 +08:00
|
|
|
|
2022-10-30 00:00:17 +08:00
|
|
|
void main()
|
|
|
|
{
|
|
|
|
// convenient variables
|
|
|
|
ivec2 globalThread = ivec2(gl_GlobalInvocationID);
|
|
|
|
|
|
|
|
// Get the diffuse color of the pixel
|
|
|
|
vec3 pixelDiffuse = imageLoad (albedo, globalThread).rgb;
|
|
|
|
|
|
|
|
// Get position of fragment in world space
|
2023-01-11 10:35:29 +08:00
|
|
|
vec4 positionWorld = vec4 (imageLoad (positionWorldSpace, globalThread).rgb, 1.0f);
|
|
|
|
|
|
|
|
// Get position of fragment in view spacee
|
2022-10-30 19:21:02 +08:00
|
|
|
vec3 positionView = imageLoad (positions, globalThread).rgb;
|
2022-10-30 00:00:17 +08:00
|
|
|
|
|
|
|
// normal of fragment
|
2022-11-01 20:10:59 +08:00
|
|
|
vec3 normalView = imageLoad(normals, globalThread).rgb;
|
2022-10-30 00:00:17 +08:00
|
|
|
|
2023-03-06 00:02:06 +08:00
|
|
|
uvec4 lightLayerAndNormal = imageLoad (lightLayerData, globalThread);
|
|
|
|
|
2022-11-02 14:21:27 +08:00
|
|
|
// light layer index
|
2023-03-06 00:02:06 +08:00
|
|
|
uint lightLayer = lightLayerAndNormal.x;
|
|
|
|
|
2023-03-08 21:23:03 +08:00
|
|
|
// Normals are stored in 2 32-bit uints (only first 48 bits are used) where they can be unpacked in 3 floats so we unpack them here.
|
2023-03-06 00:02:06 +08:00
|
|
|
vec3 worldNormal = vec3 (unpackHalf2x16 (lightLayerAndNormal.y).xy, unpackHalf2x16 (lightLayerAndNormal.z).x);
|
2022-11-02 14:21:27 +08:00
|
|
|
|
2022-10-30 00:00:17 +08:00
|
|
|
vec3 fragColor = vec3 (0.0f);
|
|
|
|
|
2023-01-09 11:06:10 +08:00
|
|
|
vec4 shadowMapColor = vec4 (1.0f);
|
|
|
|
|
2023-03-08 21:23:03 +08:00
|
|
|
// Shadow multiplier
|
|
|
|
float shadowValue = 1.0f;
|
|
|
|
|
2023-01-11 08:25:38 +08:00
|
|
|
for (int i = 0; i < lightCounts.ambientLights; ++i)
|
|
|
|
{
|
|
|
|
if ((lightLayer & AmbLightData.aLightData[i].cullingMask) != 0)
|
|
|
|
{
|
|
|
|
// Just do some add
|
|
|
|
fragColor += pixelDiffuse.rgb * AmbLightData.aLightData[i].ambientColor.rgb * vec3 (AmbLightData.aLightData[i].strength);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-30 00:00:17 +08:00
|
|
|
for (int i = 0; i < lightCounts.directionalLights; ++i)
|
|
|
|
{
|
2022-11-02 14:21:27 +08:00
|
|
|
if ((lightLayer & DirLightData.dLightData[i].cullingMask) != 0)
|
|
|
|
{
|
|
|
|
// get normalized direction of light
|
|
|
|
vec3 dLightNormalized = normalize (DirLightData.dLightData[i].direction);
|
2022-10-30 00:00:17 +08:00
|
|
|
|
2022-11-02 14:21:27 +08:00
|
|
|
// Get diffuse strength
|
2023-03-03 22:01:34 +08:00
|
|
|
float diffuseStrength = max (0, dot (-dLightNormalized, normalView));
|
2022-10-30 00:00:17 +08:00
|
|
|
|
2022-11-02 14:21:27 +08:00
|
|
|
// Calculate the fragment color
|
|
|
|
fragColor += DirLightData.dLightData[i].diffuseColor.rgb * diffuseStrength.rrr * pixelDiffuse;
|
2023-01-09 11:06:10 +08:00
|
|
|
|
2023-01-11 08:25:38 +08:00
|
|
|
// If the shadow map is enabled (test the bit)
|
2023-01-09 11:06:10 +08:00
|
|
|
if ((DirLightData.dLightData[i].shadowData & uint(1)) == 1)
|
|
|
|
{
|
2023-03-08 21:23:03 +08:00
|
|
|
uint shadowMapIndex = (DirLightData.dLightData[i].shadowData >> 8);
|
|
|
|
shadowValue = min (shadowValue, CalcShadowValue (shadowMaps[nonuniformEXT(shadowMapIndex)], positionWorld, DirLightData.dLightData[i].pvMatrix, worldNormal, DirLightData.dLightData[i].directionWorld.xyz));
|
2023-01-09 11:06:10 +08:00
|
|
|
}
|
2022-11-02 14:21:27 +08:00
|
|
|
}
|
2022-10-30 00:00:17 +08:00
|
|
|
}
|
|
|
|
|
2023-03-08 21:23:03 +08:00
|
|
|
// calculate shadow map here
|
|
|
|
if (shadowValue != 0.0f)
|
|
|
|
fragColor.rgb *= shadowValue;
|
|
|
|
|
2022-11-01 20:10:59 +08:00
|
|
|
float ssaoVal = imageLoad (ssaoBlurredImage, globalThread).r;
|
|
|
|
fragColor *= ssaoVal;
|
|
|
|
|
2023-02-22 16:39:21 +08:00
|
|
|
vec4 objectVFXColor = imageLoad (objectVFXImage, globalThread);
|
|
|
|
fragColor += objectVFXColor.rgb * objectVFXColor.a;
|
|
|
|
|
2022-10-30 00:00:17 +08:00
|
|
|
// store result into result image
|
2022-11-01 20:10:59 +08:00
|
|
|
imageStore(targetImage, ivec2(gl_GlobalInvocationID.xy), vec4(fragColor.rgb, 1.0f));
|
2022-10-30 00:00:17 +08:00
|
|
|
}
|