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.
11 lines
207 B
11 lines
207 B
#version 330
|
|
|
|
layout(location = 0) in vec2 v_vertex;
|
|
layout(location = 1) in vec2 v_texCoord;
|
|
out vec2 f_texCoord;
|
|
|
|
void main(void)
|
|
{
|
|
gl_Position = vec4(v_vertex, 0.0, 1.0);
|
|
f_texCoord = v_texCoord;
|
|
}
|
|
|