8 lines
149 B
Text
8 lines
149 B
Text
|
#version 100
|
||
|
attribute vec2 pos;
|
||
|
attribute vec2 uv;
|
||
|
varying lowp vec2 texcoord;
|
||
|
void main() {
|
||
|
gl_Position = vec4(pos, 0, 1);
|
||
|
texcoord = uv;
|
||
|
}
|