Shadow WIP

- fixed file placing of ShadowPass.cpp
This commit is contained in:
Ayumiwii
2016-02-05 16:13:46 +01:00
parent 0e51ae7dc9
commit bbf6058c17
2 changed files with 14 additions and 11 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ layout(location = 0 ) out float ShadowMap;
void main()
{
//ShadowMap = vec4(vec3(gl_FragCoord.z), 1.0);
ShadowMap = (glgl_FragCoord.x, glgl_FragCoord.y, glgl_FragCoord.z);
ShadowMap = (gl_FragCoord.z);
}