12 lines
157 B
Text
12 lines
157 B
Text
|
|
|
||
|
|
attribute vec4 a_position;
|
||
|
|
attribute vec2 a_texcoord;
|
||
|
|
|
||
|
|
varying vec2 v_texcoord;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_Position = a_position;
|
||
|
|
v_texcoord = a_texcoord;
|
||
|
|
}
|