• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1uniform sampler2D m_Texture;
2varying vec2 texCoord;
3
4uniform float m_Value;
5
6void main() {
7       vec4 texVal = texture2D(m_Texture, texCoord);
8
9       gl_FragColor = texVal * m_Value;
10
11}