Home | History | Annotate | Download | only in raw
      1 
      2 void main()  {
      3     lowp vec4 texColor;
      4     texColor = texture2D(UNI_Tex0, gl_PointCoord);
      5 
      6     gl_FragColor.rgb = texColor.rgb;
      7     gl_FragColor.a = 0.1;
      8 }