VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/shaders/ckeyDst.c@ 35273

Last change on this file since 35273 was 22883, checked in by vboxsync, 15 years ago

fideo hw accel: fix for ATI + small optimizations

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 371 bytes
Line 
1#extension GL_ARB_texture_rectangle : enable
2uniform sampler2DRect uDstTex;
3uniform vec4 uDstClr;
4void vboxCKeyDst(void)
5{
6 vec4 dstClr = texture2DRect(uDstTex, vec2(gl_TexCoord[1]));
7 vec3 difClr = dstClr.rgb - uDstClr.rgb;
8 if(any(greaterThan(difClr, vec3(0.01, 0.01, 0.01)))
9 || any(lessThan(difClr, vec3(-0.01, -0.01, -0.01))))
10 discard;
11}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette