• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1uniform sampler2D  sTexture;
2
3varying lowp    float  LightIntensity;
4varying mediump vec2   TexCoord;
5
6void main()
7{
8    gl_FragColor = texture2D(sTexture, TexCoord) * LightIntensity;
9}
10