Skip to content
Snippets Groups Projects
Commit 42d69bdf authored by David Parks's avatar David Parks
Browse files

merge

parents 68ec4d83 e75d889e
No related branches found
No related tags found
No related merge requests found
...@@ -55,8 +55,6 @@ uniform float far_clip; ...@@ -55,8 +55,6 @@ uniform float far_clip;
uniform vec3 proj_origin; //origin of projection to be used for angular attenuation uniform vec3 proj_origin; //origin of projection to be used for angular attenuation
uniform float sun_wash; uniform float sun_wash;
uniform int proj_shadow_idx;
uniform float shadow_fade;
uniform vec3 center; uniform vec3 center;
uniform vec3 color; uniform vec3 color;
...@@ -143,7 +141,8 @@ void main() ...@@ -143,7 +141,8 @@ void main()
discard; discard;
} }
vec3 norm = texture2DRect(normalMap, frag.xy).xyz*2.0-1.0; vec3 norm = texture2DRect(normalMap, frag.xy).xyz;
norm = vec3((norm.xy-0.5)*2.0, norm.z);
norm = normalize(norm); norm = normalize(norm);
float l_dist = -dot(lv, proj_n); float l_dist = -dot(lv, proj_n);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment