grk_5sem_labs/cw 9/shaders/test.frag
Eikthyrnir 60c53663a1 lab 9
2024-02-06 21:37:38 +01:00

12 lines
210 B
GLSL

#version 330 core
out vec4 FragColor;
in vec2 tc;
uniform sampler2D depthMap;
void main()
{
float depthValue = texture(depthMap, tc).r;
FragColor = vec4(vec3(depthValue+0.5), 1.0);
}