10 lines
184 B
GLSL
10 lines
184 B
GLSL
attribute vec4 aVertexPosition;
|
|
attribute vec2 aTextureCoord;
|
|
|
|
varying highp vec2 vTextureCoord;
|
|
|
|
void main() {
|
|
gl_Position = aVertexPosition;
|
|
vTextureCoord = aTextureCoord;
|
|
}
|