source: trunk/src/opengl/util/painter_nomask.glsl@ 353

Last change on this file since 353 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 191 bytes
Line 
1uniform sampler2D dst_texture;
2uniform vec2 inv_dst_size;
3
4void main()
5{
6 vec4 dst = texture2D(dst_texture, gl_FragCoord.xy * inv_dst_size);
7
8 gl_FragColor = composite(brush(), dst);
9}
Note: See TracBrowser for help on using the repository browser.