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 <GLUPGLSL/state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6//import <GLUP/fragment_shader_utils.h>
7
8#ifndef GLUP_NO_GL_CLIPPING
9in float gl_ClipDistance[];
10#endif
11
12in VertexData {
13 vec4 color;
14 vec4 tex_coord;
15} FragmentIn;
16
17void main() {
18
19#ifdef GLUP_GL_ES
20#ifndef GLUP_NO_GL_CLIPPING
21 if(glupIsEnabled(GLUP_CLIPPING) && (gl_ClipDistance[0] < 0.0)) {
22 discard;
23 }
24#endif
25#endif
26
27 if(glupIsEnabled(GLUP_PRIMITIVE_FILTERING)) {
28 glup_primitive_filter(gl_PrimitiveID);
29 }
30
31 if(glupIsEnabled(GLUP_PICKING)) {
32 glup_FragColor = glup_picking(gl_PrimitiveID);
33 return;
34 }
35
36 vec4 result;
37 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
38 result = FragmentIn.color;
39 } else {
40 result = GLUP.front_color;
41 }
42 if(glupIsEnabled(GLUP_TEXTURING)) {
43 result = glup_texturing(result, FragmentIn.tex_coord);
44 }
45
46 glup_FragColor = result;
47 glup_alpha_discard();
48}
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71