2014-05-12 20:24:26 +00:00
|
|
|
uniform sampler2D tex;
|
|
|
|
uniform sampler2D texture2;
|
2014-07-14 22:19:41 +00:00
|
|
|
in vec4 vTexCoord;
|
|
|
|
in vec4 vColor;
|
2014-07-14 23:05:53 +00:00
|
|
|
out vec4 FragColor;
|
2014-05-12 20:24:26 +00:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2014-07-14 22:19:41 +00:00
|
|
|
vec4 frag = vColor;
|
2014-05-12 20:24:26 +00:00
|
|
|
|
2014-11-28 11:28:45 +00:00
|
|
|
vec4 t1 = texture(tex, vTexCoord.xy);
|
|
|
|
vec4 t2 = texture(texture2, vec2(vTexCoord.x, 1.0-vTexCoord.y));
|
2014-05-12 20:24:26 +00:00
|
|
|
|
2014-07-14 23:05:53 +00:00
|
|
|
FragColor = frag * vec4(t1.r, t1.g, t1.b, t2.a);
|
2014-05-12 20:24:26 +00:00
|
|
|
}
|