1uniform sampler2D m_Texture; 2uniform vec4 m_Color; 3varying vec2 texCoord; 4 5void main() { 6 vec4 texVal = texture2D(m_Texture, texCoord); 7 gl_FragColor = texVal * m_Color; 8} 9 10