Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
thick_lines_vertex_shader.h
1//import <GLUP/current_profile/vertex_shader_preamble.h>
2//import <GLUPGLSL/state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6
7in vec4 vertex_in;
8in vec4 color_in;
9in vec4 tex_coord_in;
10
11out VertexData {
12#ifdef GLUP_GL_ES
13 vec4 vertex_clip_space;
14#endif
15 vec4 color;
16 vec4 tex_coord;
17} VertexOut;
18
19void main(void) {
20 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
21 VertexOut.color = color_in;
22 }
23 if(glupIsEnabled(GLUP_TEXTURING)) {
24 if(glupIsEnabled(GLUP_INDIRECT_TEXTURING)) {
25 VertexOut.tex_coord = tex_coord_in;
26 } else {
27 VertexOut.tex_coord =
28 GLUP.texture_matrix * tex_coord_in;
29 }
30 }
31 gl_Position = GLUP.modelviewprojection_matrix * vertex_in;
32}
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71