Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
geometry_shader_preamble.h
1//import <GLUP/current_profile/geometry_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
7
8#if defined(GLUP_TESS_GATHER)
9
10in GTVertexData {
11 vec4 vertex_clip_space[glup_nb_vertices_per_GL_v];
12 vec4 color[glup_nb_vertices_per_GL_v];
13 vec4 tex_coord[glup_nb_vertices_per_GL_v];
14#ifndef GLUP_TESS_MULTI_VERTEX
15 bool discard_me;
16#endif
17} VertexIn[];
18
19#elif defined(GLUP_VERTEX_GATHER)
20
21in GVertexData {
22 vec4 other_vertex_clip_space[glup_nb_vertices_per_GL_v-1];
23 vec4 color[glup_nb_vertices_per_GL_v];
24 vec4 tex_coord[glup_nb_vertices_per_GL_v];
25} VertexIn[];
26
27#else
28
29in VertexData {
30 vec4 color;
31 vec4 tex_coord;
32#if GLUP_PRIMITIVE_DIMENSION==2
33 vec3 normal;
34#endif
35} VertexIn[];
36
37#endif
38
39out VertexData {
40 vec4 vertex_clip_space;
41 vec4 color;
42 vec4 tex_coord;
43#if GLUP_PRIMITIVE_DIMENSION==2
44 vec3 normal;
45#endif
46 vec4 mesh_tex_coord;
47} VertexOut;
48
49#ifndef GLUP_NO_GL_CLIPPING
50out float gl_ClipDistance[];
51#endif
52
53//****** Data abstraction **************
54
55#if defined(GLUP_VERTEX_GATHER) || defined(GLUP_TESS_GATHER)
56
57# if defined(GLUP_VERTEX_GATHER)
58vec4 vertex_clip_space_in(in int i) {
59 int i0 = i / glup_nb_vertices_per_GL_v;
60 int i1 = i % glup_nb_vertices_per_GL_v;
61 return (i1==0) ? gl_in[i0].gl_Position :
62 VertexIn[i0].other_vertex_clip_space[i1-1];
63}
64# else
65vec4 vertex_clip_space_in(in int i) {
66 int i0 = i / glup_nb_vertices_per_GL_v;
67 int i1 = i % glup_nb_vertices_per_GL_v;
68 return VertexIn[i0].vertex_clip_space[i1];
69}
70# endif
71
72vec4 color_in(in int i) {
73 int i0 = i / glup_nb_vertices_per_GL_v;
74 int i1 = i % glup_nb_vertices_per_GL_v;
75 return VertexIn[i0].color[i1];
76}
77
78vec4 tex_coord_in(in int i) {
79 int i0 = i / glup_nb_vertices_per_GL_v;
80 int i1 = i % glup_nb_vertices_per_GL_v;
81 return VertexIn[i0].tex_coord[i1];
82}
83
84bool prim_is_discarded() {
85#if defined(GLUP_TESS_GATHER) && !defined(GLUP_TESS_MULTI_VERTEX)
86 return VertexIn[0].discard_me;
87#endif
88 return false;
89}
90
91#else
92
93vec4 vertex_clip_space_in(in int i) {
94 return gl_in[i].gl_Position;
95}
96
97vec4 color_in(in int i) {
98 return VertexIn[i].color;
99}
100
101vec4 tex_coord_in(in int i) {
102 return VertexIn[i].tex_coord;
103}
104
105#if GLUP_PRIMITIVE_DIMENSION==2
106vec3 normal_in(in int i) {
107 return VertexIn[i].normal;
108}
109#endif
110
111bool prim_is_discarded() {
112 return false;
113}
114
115#endif
116
117// **** Utilities ****************************
118
119vec4 vertex_clip_space[glup_primitive_nb_vertices];
120
121void get_vertices() {
122 for(int v=0; v<glup_primitive_nb_vertices; ++v) {
123 vertex_clip_space[v] = vertex_clip_space_in(v);
124 }
125 if(GLUP.cells_shrink != 0.0) {
126 vec4 g = vec4(0.0, 0.0, 0.0, 0.0);
127 for(int i=0; i<glup_primitive_nb_vertices; ++i) {
128 g += vertex_clip_space[i];
129 }
130 g /= float(glup_primitive_nb_vertices);
131 float s = GLUP.cells_shrink;
132 for(int i=0; i<glup_primitive_nb_vertices; ++i) {
133 vertex_clip_space[i] = mix(vertex_clip_space[i], g, s);
134 }
135 }
136}
137
138float clip_distance(in vec4 V, in bool do_clip) {
139 return do_clip?dot(V,GLUP.clip_clip_plane):1.0;
140}
141
142bool cell_is_clipped() {
143 if(prim_is_discarded()) {
144 return true;
145 }
146 if(
147 (glup_primitive_dimension != 3) ||
148 !glupIsEnabled(GLUP_CLIPPING) ||
149 (GLUP.clipping_mode==GLUP_CLIP_STANDARD) ||
150 (GLUP.clipping_mode==GLUP_CLIP_SLICE_CELLS)
151 ) {
152 return false;
153 }
154 int count = 0;
155 for(int i=0; i<glup_primitive_nb_vertices; ++i) {
156 count += int(clip_distance(vertex_clip_space_in(i),true) >= 0.0);
157 }
158 if(
159 (GLUP.clipping_mode==GLUP_CLIP_WHOLE_CELLS) && (count == 0)
160 ) {
161 return true;
162 }
163 if(
164 (GLUP.clipping_mode==GLUP_CLIP_STRADDLING_CELLS) &&
165 ((count==0) || (count==glup_primitive_nb_vertices))
166 ) {
167 return true;
168 }
169
170 // Should not happen ??? (first test would have returned)
171 // But if I do not say that, straddling cells
172 // do not work ??? (WTF?) GLSL compiler bug ?
173 if(GLUP.clipping_mode==GLUP_CLIP_SLICE_CELLS) {
174 return true;
175 }
176
177 return false;
178}
179
180void emit_vertex(in int i, in vec4 mesh_tex_coord, in bool do_clip) {
181#ifndef GLUP_NO_GL_CLIPPING
182 if(glupIsEnabled(GLUP_CLIPPING)) {
183 gl_ClipDistance[0] = clip_distance(vertex_clip_space_in(i),do_clip);
184 }
185#endif
186 gl_Position = vertex_clip_space[i];
187 VertexOut.vertex_clip_space = gl_Position;
188 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
189 VertexOut.color = color_in(i);
190 }
191 if(glupIsEnabled(GLUP_TEXTURING)) {
192 VertexOut.tex_coord = tex_coord_in(i);
193 }
194#if GLUP_PRIMITIVE_DIMENSION==2
195 if(
196 glupIsEnabled(GLUP_LIGHTING) &&
197 glupIsEnabled(GLUP_VERTEX_NORMALS)) {
198 VertexOut.normal = normal_in(i);
199 }
200#endif
201 if(glupIsEnabled(GLUP_DRAW_MESH)) {
202 VertexOut.mesh_tex_coord = mesh_tex_coord;
203 }
204 EmitVertex();
205}
206
207void draw_triangle(in int i1, in int i2, in int i3, in bool do_clip) {
208 emit_vertex(i1, vec4(1.0, 0.0, 0.0, 0.0), do_clip);
209 emit_vertex(i2, vec4(0.0, 1.0, 0.0, 0.0), do_clip);
210 emit_vertex(i3, vec4(0.0, 0.0, 1.0, 0.0), do_clip);
211 EndPrimitive();
212}
213
214void draw_quad(in int i1, in int i2, in int i3, in int i4, in bool do_clip) {
215 emit_vertex(i1, vec4(0.0, 1.0, 0.0, 1.0), do_clip);
216 emit_vertex(i2, vec4(1.0, 0.0, 0.0, 1.0), do_clip);
217 emit_vertex(i3, vec4(0.0, 1.0, 1.0, 0.0), do_clip);
218 emit_vertex(i4, vec4(1.0, 0.0, 1.0, 0.0), do_clip);
219 EndPrimitive();
220}
T dot(const vecng< 3, T > &v1, const vecng< 3, T > &v2)
Computes the dot product of 2 vectors. vecng
Definition vecg.h:916
vecng< 3, Numeric::float64 > vec3
Represents points and vectors in 3d.
Definition geometry.h:65
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71