Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
lines_fragment_shader.h
1//import <GLUP/current_profile/fragment_shader_preamble.h>
2//import <GLUPES/fragment_shader_state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6//import <GLUPES/fragment_shader_utils.h>
7
8glup_in vec4 color;
9glup_in vec4 tex_coord;
10glup_in float clip_dist;
11glup_flat glup_in glup_id primitive_id;
12
13void main() {
14
15 if(glupIsEnabled(GLUP_CLIPPING) && (clip_dist < 0.0)) {
16 discard;
17 }
18
19 if(glupIsEnabled(GLUP_PICKING)) {
20 glup_FragColor = glup_picking(int(primitive_id));
21 return;
22 }
23
24 vec4 result;
25 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
26 result = color;
27 } else {
28 result = GLUP.front_color;
29 }
30 if(glupIsEnabled(GLUP_TEXTURING)) {
31 result = glup_texturing(result, tex_coord);
32 }
33 glup_FragColor = result;
34 glup_alpha_discard();
35}
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71