Files
fishtanks/src/Shaders/ShadowMap.frag.glsl
T
Jace 3470a80f40 Revert "Indentation style changed to Horstmann"
This reverts commit f2259f712d.

Conflicts:

	src/GameWorld.cpp
	src/Systems/PhysicsSystem.cpp
2014-04-12 01:48:15 +02:00

10 lines
128 B
GLSL
Executable File

#version 430
uniform mat4 MVP;
layout(location = 0) out float FragmentDepth;
void main()
{
FragmentDepth = gl_FragCoord.z;
}