ParticlePixelShader.fsh 110 B

123456
  1. uniform sampler2D Texture;
  2. void main()
  3. {
  4. gl_FragColor = gl_Color * texture2D(Texture, gl_TexCoord[0].xy);
  5. }