source: trunk/src/opengl/util/composition_mode_screen.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: 130 bytes
Line 
1// Dca' = Sca + Dca - Sca.Dca
2// Da' = Sa + Da - Sa.Da
3vec4 composite(vec4 src, vec4 dst)
4{
5 return src + dst - src * dst;
6}
Note: See TracBrowser for help on using the repository browser.