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

package.src.shaders.background.vertex.glsl Maven / Gradle / Ivy

The newest version!
attribute vec2 a_pos;

uniform mat4 u_matrix;

void main() {
    gl_Position = u_matrix * vec4(a_pos, 0, 1);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy