Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
tess_evaluation_shader.h
1//import <GLUP/current_profile/tess_evaluation_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
7layout(isolines) in;
8
9in VertexData {
10 vec4 color;
11 vec4 tex_coord;
12} VertexIn[];
13
14out GTVertexData {
15 vec4 vertex_clip_space[glup_nb_vertices_per_GL_v];
16 vec4 color[glup_nb_vertices_per_GL_v];
17 vec4 tex_coord[glup_nb_vertices_per_GL_v];
18#ifndef GLUP_TESS_MULTI_VERTEX
19 bool discard_me;
20#endif
21} VertexOut;
22
23#ifdef GLUP_TESS_MULTI_VERTEX
24
25void main() {
26 int i0 = int(gl_TessCoord.x + 0.5);
27 for(int i1=0; i1<glup_nb_vertices_per_GL_v; ++i1) {
28 int i = i0*glup_nb_vertices_per_GL_v + i1;
29 VertexOut.vertex_clip_space[i1] = gl_in[i].gl_Position;
30 }
31 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
32 for(int i1=0; i1<glup_nb_vertices_per_GL_v; ++i1) {
33 int i = i0*glup_nb_vertices_per_GL_v + i1;
34 VertexOut.color[i1] = VertexIn[i].color;
35 }
36 }
37 if(glupIsEnabled(GLUP_TEXTURING)) {
38 for(int i1=0; i1<glup_nb_vertices_per_GL_v; ++i1) {
39 int i = i0*glup_nb_vertices_per_GL_v + i1;
40 VertexOut.tex_coord[i1] = VertexIn[i].tex_coord;
41 }
42 }
43}
44#else
45
46void main() {
47 VertexOut.discard_me = (gl_TessCoord.x > 0.5);
48 if(VertexOut.discard_me) {
49 return;
50 }
51 for(int i=0; i<glup_primitive_nb_vertices; ++i) {
52 VertexOut.vertex_clip_space[i] = gl_in[i].gl_Position;
53 }
54 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
55 for(int i=0; i<glup_primitive_nb_vertices; ++i) {
56 VertexOut.color[i] = VertexIn[i].color;
57 }
58 }
59 if(glupIsEnabled(GLUP_TEXTURING)) {
60 for(int i=0; i<glup_primitive_nb_vertices; ++i) {
61 VertexOut.tex_coord[i] = VertexIn[i].tex_coord;
62 }
63 }
64}
65
66#endif
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71