Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
vertex_shader.h
1//import <fullscreen/current_profile/vertex_shader_preamble.h>
2//import <GLUP/stdglup.h>
3
4glup_in vec2 vertex_in;
5glup_in vec2 tex_coord_in;
6glup_out vec2 tex_coord;
7
8void main() {
9 tex_coord = tex_coord_in;
10 gl_Position = vec4(vertex_in, 0.0, 1.0);
11}
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71
vecng< 2, Numeric::float64 > vec2
Represents points and vectors in 2d.
Definition geometry.h:59