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.
14 lines
202 B
14 lines
202 B
2 months ago
|
#version 330
|
||
|
|
||
|
in vec2 v_vertex;
|
||
|
in vec2 v_texCoord;
|
||
|
out vec2 f_texCoord;
|
||
|
|
||
|
uniform mat4 transform;
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
gl_Position = transform * vec4(v_vertex, 0.0, 1.0);
|
||
|
f_texCoord = v_texCoord;
|
||
|
}
|