8 lines
No EOL
184 B
GLSL
8 lines
No EOL
184 B
GLSL
attribute vec4 aVertexPosition;
|
|
|
|
uniform mat4 uModelViewMatrix;
|
|
uniform mat4 uProjectionMatrix;
|
|
|
|
void main() {
|
|
gl_Position = uProjectionMatrix * uModelViewMatrix * aVertexPosition;
|
|
} |