treesummaryrefslogcommitdiff
path: root/shaders/vert_irradiance.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/vert_irradiance.glsl')
-rw-r--r--shaders/vert_irradiance.glsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/shaders/vert_irradiance.glsl b/shaders/vert_irradiance.glsl
index 25770f6..6b54180 100644
--- a/shaders/vert_irradiance.glsl
+++ b/shaders/vert_irradiance.glsl
@@ -69,9 +69,9 @@ void main()
vec4 t = texture(shadowmapTexture, shadowmapCoords);
//vec4 t = blur(shadowmapTexture, shadowmapCoords, vec2(screenWidth, screenHeight));
- BacksideIrradiance = t.r + t.g*10 + t.b*100;
+ BacksideIrradiance = t.r; //*100 + t.g + t.b/100;
- vec3 lightDir = (vec3(0, 0, 0) - lightPos);
+ vec3 lightDir = normalize(FragPos - lightPos);
Backside = (lightPos + (lightDir * BacksideIrradiance));
//Backside = texture(shadowmapTexture, shadowmapCoords).xyz*10;
}