Initial import from qtquick2.
[profile/ivi/qtdeclarative.git] / src / imports / particles / resources / trailsfragment.shader
1 uniform sampler2D texture;
2
3 varying highp vec2 fTex;
4 varying lowp vec4 fColor;
5
6 void main() {
7     gl_FragColor = (texture2D(texture, fTex).w) * fColor;
8 }