source:
vbox/trunk/src/VBox/Frontends/VirtualBox/shaders/cconvBGR.c@
22640
Last change on this file since 22640 was 22640, checked in by , 16 years ago | |
---|---|
|
|
File size: 184 bytes |
Line | |
---|---|
1 | #extension GL_ARB_texture_rectangle : enable |
2 | |
3 | uniform sampler2DRect uSrcTex; |
4 | |
5 | void cconvBGR(vec2 srcCoord) |
6 | { |
7 | gl_FragColor = texture2DRect(uSrcTex, vec2(srcCoord.x, srcCoord.y)); |
8 | } |
Note:
See TracBrowser
for help on using the repository browser.