uniform sampler2D texture; uniform sampler2D texture2; varying vec2 texCoord; void main() { gl_FragColor = tex2D(texture,texCoord) + tex2D(texture2,texCoord); }