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.
10 lines
179 B
10 lines
179 B
2 years ago
|
uniform mat3 proj;
|
||
|
attribute vec2 pos;
|
||
|
attribute vec2 texcoord;
|
||
|
varying vec2 v_texcoord;
|
||
|
|
||
|
void main() {
|
||
|
gl_Position = vec4(proj * vec3(pos, 1.0), 1.0);
|
||
|
v_texcoord = texcoord;
|
||
|
}
|