19 lines
458 B
Text
19 lines
458 B
Text
|
#version 450 core
|
||
|
|
||
|
//! type fragment
|
||
|
|
||
|
layout( location = 0 ) uniform sampler2D u_InputTexture;
|
||
|
layout( location = 1 ) uniform int u_LOD;
|
||
|
layout( location = 2 ) uniform vec2 u_OutputSize;
|
||
|
|
||
|
layout( location = 0 ) out vec4 o_Color;
|
||
|
|
||
|
void main( void )
|
||
|
{
|
||
|
vec2 ts = textureSize( u_InputTexture , u_LOD );
|
||
|
ivec2 pos = ivec2( ts * gl_FragCoord.xy / u_OutputSize );
|
||
|
vec3 c = texelFetch( u_InputTexture , pos , u_LOD ).rgb;
|
||
|
o_Color = vec4( c / ( c + 1 ) , 1 );
|
||
|
}
|
||
|
|