blob: 15d4bcba5e1fc722e234a382230d6f67cae76024 [file] [log] [blame]
uniform sampler2D m_Texture;
uniform vec4 m_Color;
varying vec2 texCoord;
void main() {
vec4 texVal = texture2D(m_Texture, texCoord);
gl_FragColor = texVal * m_Color;
}