8 lines
114 B
GLSL
8 lines
114 B
GLSL
precision mediump float;
|
|
|
|
attribute vec2 a_position;
|
|
|
|
void main() {
|
|
gl_Position = vec4(a_position, 0.0, 1.0);
|
|
}
|