Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpu_shader_image_depth_linear_frag.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cd4b3f2fa0834b843a793a15a4429e0cf5b3e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

in vec2 texCoord_interp;
out vec4 fragColor;
#define texture2D texture

uniform float znear;
uniform float zfar;
uniform sampler2D image;

void main()
{
	float depth = texture2D(image, texCoord_interp).r;

	/* normalize */
	fragColor.rgb = vec3((2.0f * znear) / (zfar + znear - (depth * (zfar - znear))));
	fragColor.a = 1.0f;
}