DuctTaped_GL/6.3.coordinate_systems.frag

16 lines
218 B
GLSL
Raw Normal View History

#version 330 core
out vec4 FragColor;
in vec2 TexCoord;
uniform sampler2D texture1;
uniform sampler2D texture2;
void main()
{
FragColor = mix(texture(texture1, TexCoord), texture(texture2, TexCoord), 0.2);
}