Last change
on this file since 54440 was 35579, checked in by vboxsync, 14 years ago |
scm: cleanups and adjustments
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision
|
File size:
258 bytes
|
Line | |
---|
1 | #extension GL_ARB_texture_rectangle : enable
|
---|
2 | uniform sampler2DRect uSrcTex;
|
---|
3 | void vboxCConvApplyAYUV(vec4 color);
|
---|
4 | void vboxCConv()
|
---|
5 | {
|
---|
6 | vec2 srcCoord = vec2(gl_TexCoord[0]);
|
---|
7 | vec4 color = texture2DRect(uSrcTex, srcCoord);
|
---|
8 | vboxCConvApplyAYUV(color);
|
---|
9 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.