blob: 790399e813549799d70d0a52a17072128206ea24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
layout(location = 2) uniform sampler2D textureData;
layout(location = 1) uniform float y_scale;
in vec2 interpolatedTextureCoordinates;
in float interpolated_frag_depth;
out vec4 fragmentColor;
void main() {
fragmentColor.rgb = texture(textureData, interpolatedTextureCoordinates).rgb;
fragmentColor.a = 1.0;
gl_FragDepth = interpolated_frag_depth * y_scale;
}
|