projects
/
framework
/
uifw
/
evas.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
24b04e4cae6f7893e9f4cc4c018cfdcef4aaa904
[framework/uifw/evas.git]
/
src
/
modules
/
engines
/
gl_common
/
shader
/
yuv_nomul_vert.shd
1
#ifdef GL_ES
2
precision mediump float;
3
#endif
4
attribute vec4 vertex;
5
attribute vec2 tex_coord, tex_coord2, tex_coord3;
6
uniform mat4 mvp;
7
varying vec2 tex_c, tex_c2, tex_c3;
8
void main()
9
{
10
gl_Position = mvp * vertex;
11
tex_c = tex_coord;
12
tex_c2 = tex_coord2;
13
tex_c3 = tex_coord3;
14
}