27 lines
743 B
GLSL
27 lines
743 B
GLSL
#version 450 core
|
|
layout(early_fragment_tests) in;
|
|
layout(location=0)uniform vec3 lightPos;
|
|
layout(location=1)uniform vec4 lumRad;
|
|
layout (binding = 0) uniform sampler2D screenTexture;
|
|
layout (binding = 1) uniform sampler2D normals;
|
|
in vec2 vTexPos;
|
|
out vec4 fColor;
|
|
float rad = lumRad.a;
|
|
void main() {
|
|
vec3 pos = texture(screenTexture, vTexPos).xyz;
|
|
vec3 distVec = pos - lightPos;
|
|
float dist = dot(distVec, distVec);
|
|
if (dist > rad) {
|
|
discard;
|
|
}
|
|
vec4 normbit = texture(normals, vTexPos);
|
|
vec3 norm = normbit.xyz;
|
|
float y1 = dot(norm, distVec);
|
|
float y2 = float(y1 > 0 ? 1 : 0);
|
|
float x = 1 - (pow(dist / rad,4));
|
|
//float x = 1 - (dist / rad);
|
|
//float x = 1;
|
|
vec3 c = y2* x * lumRad.rgb;
|
|
fColor = vec4(c, 0);
|
|
}
|