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

shaders.volume.vertex.vert Maven / Gradle / Ivy

There is a newer version: 3.8
Show newest version
#if __VERSION__ >= 130
    #define attribute in
    #define varying out
#endif

attribute vec3 coordinates;
uniform mat4 MVP;

void main() {
    gl_Position = MVP*vec4(coordinates,1);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy