You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
402 B
16 lines
402 B
uniform mat4 uMVPMatrix;
|
|
uniform mat4 uTexMatrix;
|
|
attribute vec4 aPosition;
|
|
attribute vec4 aTextureCoord;
|
|
varying vec2 vTextureCoord;
|
|
|
|
/**
|
|
* This vertex shader maps the projection matrix to the
|
|
* position of the frame and then forwards
|
|
* the coordinates of the texture to a vertex shader
|
|
*/
|
|
void main() {
|
|
gl_Position = uMVPMatrix * aPosition;
|
|
vTextureCoord = (uTexMatrix * aTextureCoord).xy;
|
|
}
|