All Downloads are FREE. Search and download functionalities are using the official Maven repository.

game.codecraft-graphics_2.11.0.7.0.source-code.texture_xy_vs.glsl Maven / Gradle / Ivy

#version 400

in vec2 vertexPos;
in vec2 texCoords;

out vec2 TexCoords;

void main()
{
    gl_Position = vec4(vertexPos.x, vertexPos.y, 0.0f, 1.0f);
    TexCoords = texCoords;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy