8glup_in
float clip_dist;
10glup_in
vec4 tex_coord;
11glup_flat glup_in glup_id primitive_id;
18 if(glupIsEnabled(GLUP_CLIPPING)) {
28 2.0 * ( (gl_FragCoord.x - GLUP.viewport[0]) / GLUP.viewport[2] - 0.5),
29 2.0 * ( (gl_FragCoord.y - GLUP.viewport[1]) / GLUP.viewport[3] - 0.5)
32 vec2 U = p2_ndc - p1_ndc;
33 vec2 V1 = p_ndc - p1_ndc;
34 vec2 V2 = p_ndc - p2_ndc;
36 if(
dot(V1,U) < 0.0 &&
dot(V1,V1) > R*R) {
40 if(
dot(V2,U) > 0.0 &&
dot(V2,V2) > R*R) {
44 if(glupIsEnabled(GLUP_PICKING)) {
45 glup_FragColor = glup_picking(
int(primitive_id));
50 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
53 result = GLUP.mesh_color;
56 if(glupIsEnabled(GLUP_TEXTURING) && !glupIsEnabled(GLUP_NORMAL_MAPPING)) {
57 result = glup_texturing(result, tex_coord);
59 glup_FragColor = result;
T dot(const vecng< 3, T > &v1, const vecng< 3, T > &v2)
Computes the dot product of 2 vectors. vecng
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
vecng< 2, Numeric::float64 > vec2
Represents points and vectors in 2d.