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

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

The newest version!
#version 400

in vec2 vertexPos;

uniform mat4 projection;
uniform mat4 modelview;


void main () {
  gl_Position = projection * modelview * vec4(vertexPos, 0.0, 1.0);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy