Last change
on this file since 71208 was 71027, checked in by vboxsync, 7 years ago |
FE/Qt: big svn props cleanup
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
269 bytes
|
Line | |
---|
1 | /* $Id: cconvAYUV.c 71027 2018-02-15 14:33:48Z vboxsync $ */
|
---|
2 | #extension GL_ARB_texture_rectangle : enable
|
---|
3 | uniform sampler2DRect uSrcTex;
|
---|
4 | void vboxCConvApplyAYUV(vec4 color);
|
---|
5 | void vboxCConv()
|
---|
6 | {
|
---|
7 | vec2 srcCoord = vec2(gl_TexCoord[0]);
|
---|
8 | vec4 color = texture2DRect(uSrcTex, srcCoord);
|
---|
9 | vboxCConvApplyAYUV(color);
|
---|
10 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.