11 lines
140 B
Plaintext
11 lines
140 B
Plaintext
|
attribute vec2 pos;
|
||
|
attribute vec2 texture;
|
||
|
|
||
|
varying vec2 v_texture;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
v_texture = texture;
|
||
|
gl_Position = vec4(pos, 0, 1);
|
||
|
}
|