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
233 B

2 years ago
layout(location = 0) in vec4 position;
layout(location = 1) in vec2 textureCoordinates;
out vec2 interpolatedTextureCoordinates;
void main() {
interpolatedTextureCoordinates = textureCoordinates;
gl_Position = position;
}