13 lines
204 B
GLSL
13 lines
204 B
GLSL
|
#version 330 core
|
||
|
|
||
|
in vec2 TexCoords;
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
uniform sampler2D depthMap;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
float depthValue = texture(depthMap, TexCoords).r;
|
||
|
FragColor = vec4(vec3(depthValue), 1.0);
|
||
|
}
|