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.
|
layout(location = 0) in vec4 position;
|
|
layout(location = 1) in vec2 textureCoordinates;
|
|
|
|
out vec2 interpolatedTextureCoordinates;
|
|
|
|
void main() {
|
|
interpolatedTextureCoordinates = textureCoordinates;
|
|
|
|
gl_Position = position;
|
|
}
|