forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenCSGRenderer.cc
519 lines (457 loc) · 20.6 KB
/
OpenCSGRenderer.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/*
* OpenSCAD (www.openscad.org)
* Copyright (C) 2009-2011 Clifford Wolf <[email protected]> and
* Marius Kintel <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* As a special exception, you have permission to link this program
* with the CGAL library and distribute executables, as long as you
* follow the requirements of the GNU GPL in regard to all of the
* software in the executable aside from CGAL.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "system-gl.h"
#include "memory.h"
#include "OpenCSGRenderer.h"
#include "polyset.h"
#include "feature.h"
#ifdef ENABLE_OPENCSG
class OpenCSGPrim : public OpenCSG::Primitive
{
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
OpenCSGPrim(OpenCSG::Operation operation, unsigned int convexity, const OpenCSGRenderer &renderer) :
OpenCSG::Primitive(operation, convexity), csgmode(Renderer::CSGMODE_NONE), renderer(renderer) { }
std::shared_ptr<const PolySet> geom;
Transform3d m;
Renderer::csgmode_e csgmode;
void render() override {
if (geom) {
glPushMatrix();
glMultMatrixd(m.data());
renderer.render_surface(*geom, csgmode, m);
glPopMatrix();
}
}
private:
const OpenCSGRenderer &renderer;
};
class OpenCSGVBOPrim : public OpenCSG::Primitive
{
public:
OpenCSGVBOPrim(OpenCSG::Operation operation, unsigned int convexity, std::unique_ptr<VertexState> vertex_state) :
OpenCSG::Primitive(operation, convexity), vertex_state(std::move(vertex_state)) { }
virtual void render() {
if (vertex_state != nullptr) {
vertex_state->draw();
} else {
if (OpenSCAD::debug != "") PRINTD("OpenCSGVBOPrim vertex_state was null");
}
}
private:
const std::unique_ptr<VertexState> vertex_state;
};
#endif // ENABLE_OPENCSG
OpenCSGRenderer::OpenCSGRenderer(std::shared_ptr<CSGProducts> root_products,
std::shared_ptr<CSGProducts> highlights_products,
std::shared_ptr<CSGProducts> background_products)
: root_products(root_products),
highlights_products(highlights_products),
background_products(background_products)
{
}
void OpenCSGRenderer::prepare(bool /*showfaces*/, bool showedges, const shaderinfo_t *shaderinfo)
{
if (Feature::ExperimentalVxORenderers.is_enabled() && !vbo_vertex_products.size()) {
if (this->root_products) {
createCSGProducts(*this->root_products, shaderinfo, false, false);
}
if (this->background_products) {
createCSGProducts(*this->background_products, shaderinfo, false, true);
}
if (this->highlights_products) {
createCSGProducts(*this->highlights_products, shaderinfo, true, false);
}
}
}
void OpenCSGRenderer::draw(bool /*showfaces*/, bool showedges, const shaderinfo_t *shaderinfo) const
{
if (!shaderinfo && showedges) shaderinfo = &getShader();
if (!Feature::ExperimentalVxORenderers.is_enabled()) {
if (this->root_products) {
renderCSGProducts(this->root_products, showedges, shaderinfo, false, false);
}
if (this->background_products) {
renderCSGProducts(this->background_products, showedges, shaderinfo, false, true);
}
if (this->highlights_products) {
renderCSGProducts(this->highlights_products, showedges, shaderinfo, true, false);
}
} else {
renderCSGProducts(std::make_shared<CSGProducts>(), showedges, shaderinfo);
}
}
// Primitive for rendering using OpenCSG
OpenCSGPrim *OpenCSGRenderer::createCSGPrimitive(const CSGChainObject &csgobj, OpenCSG::Operation operation, bool highlight_mode, bool background_mode, OpenSCADOperator type) const
{
OpenCSGPrim *prim = new OpenCSGPrim(operation, csgobj.leaf->geom->getConvexity(), *this);
std::shared_ptr<const PolySet> ps = dynamic_pointer_cast<const PolySet>(csgobj.leaf->geom);
if (ps) {
prim->geom = ps;
}
prim->m = csgobj.leaf->matrix;
prim->csgmode = get_csgmode(highlight_mode, background_mode, type);
return prim;
}
// Primitive for drawing using OpenCSG
OpenCSGVBOPrim *OpenCSGRenderer::createVBOPrimitive(const std::shared_ptr<OpenCSGVertexState> &vertex_state,
const OpenCSG::Operation operation, const unsigned int convexity) const
{
std::unique_ptr<VertexState> opencsg_vs = std::make_unique<VertexState>(vertex_state->drawMode(), vertex_state->drawSize(),
vertex_state->drawType(), vertex_state->drawOffset(),
vertex_state->elementOffset(), vertex_state->verticesVBO(),
vertex_state->elementsVBO());
// First two glBegin entries are the vertex position calls
opencsg_vs->glBegin().insert(opencsg_vs->glBegin().begin(), vertex_state->glBegin().begin(), vertex_state->glBegin().begin()+2);
// First glEnd entry is the disable vertex position call
opencsg_vs->glEnd().insert(opencsg_vs->glEnd().begin(), vertex_state->glEnd().begin(), vertex_state->glEnd().begin()+1);
return new OpenCSGVBOPrim(operation, convexity, std::move(opencsg_vs));
}
void OpenCSGRenderer::createCSGProducts(const CSGProducts &products, const Renderer::shaderinfo_t *shaderinfo, bool highlight_mode, bool background_mode)
{
size_t vbo_count = products.products.size();
size_t vbo_index = 0;
if (vbo_count) {
if (Feature::ExperimentalVxORenderersIndexing.is_enabled()) {
vbo_count *= 2;
}
all_vbos_.resize(vbo_count);
glGenBuffers(vbo_count, all_vbos_.data());
}
#ifdef ENABLE_OPENCSG
for(const auto &product : products.products) {
Color4f last_color;
std::unique_ptr<OpenCSGPrimitives> primitives = std::make_unique<OpenCSGPrimitives>();
std::unique_ptr<VertexStates> vertex_states = std::make_unique<VertexStates>();
VertexArray vertex_array(std::make_shared<OpenCSGVertexStateFactory>(), *(vertex_states.get()),
all_vbos_[vbo_index++]);
vertex_array.addSurfaceData();
vertex_array.writeSurface();
add_shader_data(vertex_array);
if (Feature::ExperimentalVxORenderersDirect.is_enabled() || Feature::ExperimentalVxORenderersPrealloc.is_enabled()) {
size_t vertices_size = 0, elements_size = 0;
for (const auto &csgobj : product.intersections) {
if (csgobj.leaf->geom) {
vertices_size += getSurfaceBufferSize(csgobj, highlight_mode, background_mode, OpenSCADOperator::INTERSECTION);
}
}
for (const auto &csgobj : product.subtractions) {
if (csgobj.leaf->geom) {
vertices_size += getSurfaceBufferSize(csgobj, highlight_mode, background_mode, OpenSCADOperator::DIFFERENCE);
}
}
if (Feature::ExperimentalVxORenderersIndexing.is_enabled()) {
vertex_array.elementsVBO() = all_vbos_[vbo_index++];
if (vertices_size <= 0xff) {
vertex_array.addElementsData(std::make_shared<AttributeData<GLubyte,1,GL_UNSIGNED_BYTE>>());
} else if (vertices_size <= 0xffff) {
vertex_array.addElementsData(std::make_shared<AttributeData<GLushort,1,GL_UNSIGNED_SHORT>>());
} else {
vertex_array.addElementsData(std::make_shared<AttributeData<GLuint,1,GL_UNSIGNED_INT>>());
}
elements_size = vertices_size * vertex_array.elements().stride();
vertex_array.elementsSize(elements_size);
}
vertices_size *= vertex_array.stride();
vertex_array.verticesSize(vertices_size);
glBindBuffer(GL_ARRAY_BUFFER, vertex_array.verticesVBO()); GL_ERROR_CHECK();
glBufferData(GL_ARRAY_BUFFER, vertices_size, nullptr, GL_STATIC_DRAW); GL_ERROR_CHECK();
if (Feature::ExperimentalVxORenderersIndexing.is_enabled()) {
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, vertex_array.elementsVBO()); GL_ERROR_CHECK();
glBufferData(GL_ELEMENT_ARRAY_BUFFER, elements_size, nullptr, GL_STATIC_DRAW); GL_ERROR_CHECK();
}
} else if (Feature::ExperimentalVxORenderersIndexing.is_enabled()) {
vertex_array.elementsVBO() = all_vbos_[vbo_index++];
vertex_array.addElementsData(std::make_shared<AttributeData<GLuint,1,GL_UNSIGNED_INT>>());
}
for(const auto &csgobj : product.intersections) {
if (csgobj.leaf->geom) {
const PolySet* ps = dynamic_cast<const PolySet*>(csgobj.leaf->geom.get());
if (!ps) continue;
const Color4f &c = csgobj.leaf->color;
csgmode_e csgmode = get_csgmode(highlight_mode, background_mode);
ColorMode colormode = ColorMode::NONE;
if (highlight_mode) {
colormode = ColorMode::HIGHLIGHT;
} else if (background_mode) {
colormode = ColorMode::BACKGROUND;
} else {
colormode = ColorMode::MATERIAL;
}
Color4f color;
if (getShaderColor(colormode, c, color)) {
last_color = color;
}
add_shader_pointers(vertex_array);
shaderinfo_t shader_info = this->getShader();
std::shared_ptr<VertexState> color_state = std::make_shared<VBOShaderVertexState>(0,0,vertex_array.verticesVBO(),vertex_array.elementsVBO());
color_state->glBegin().emplace_back([shader_info,last_color]() {
GL_TRACE("glUniform4f(%d, %f, %f, %f, %f)", shader_info.data.csg_rendering.color_area % last_color[0] % last_color[1] % last_color[2] % last_color[3]);
glUniform4f(shader_info.data.csg_rendering.color_area, last_color[0], last_color[1], last_color[2], last_color[3]); GL_ERROR_CHECK();
GL_TRACE("glUniform4f(%d, %f, %f, %f, 1.0)", shader_info.data.csg_rendering.color_edge % ((last_color[0]+1)/2) % ((last_color[1]+1)/2) % ((last_color[2]+1)/2));
glUniform4f(shader_info.data.csg_rendering.color_edge, (last_color[0]+1)/2, (last_color[1]+1)/2, (last_color[2]+1)/2, 1.0); GL_ERROR_CHECK();
});
vertex_states->emplace_back(std::move(color_state));
if (color[3] == 1.0f) {
// object is opaque, draw normally
create_surface(*ps, vertex_array, csgmode, csgobj.leaf->matrix, last_color);
std::shared_ptr<OpenCSGVertexState> surface = std::dynamic_pointer_cast<OpenCSGVertexState>(vertex_states->back());
if (surface != nullptr) {
surface->csgObjectIndex(csgobj.leaf->index);
primitives->emplace_back(createVBOPrimitive(surface,
OpenCSG::Intersection,
csgobj.leaf->geom->getConvexity()));
}
} else {
// object is transparent, so draw rear faces first. Issue #1496
std::shared_ptr<VertexState> cull = std::make_shared<VertexState>();
cull->glBegin().emplace_back([]() { GL_TRACE0("glEnable(GL_CULL_FACE)"); glEnable(GL_CULL_FACE); });
cull->glBegin().emplace_back([]() { GL_TRACE0("glCullFace(GL_FRONT)"); glCullFace(GL_FRONT); });
vertex_states->emplace_back(std::move(cull));
create_surface(*ps, vertex_array, csgmode, csgobj.leaf->matrix, last_color);
std::shared_ptr<OpenCSGVertexState> surface = std::dynamic_pointer_cast<OpenCSGVertexState>(vertex_states->back());
if (surface != nullptr) {
surface->csgObjectIndex(csgobj.leaf->index);
primitives->emplace_back(createVBOPrimitive(surface,
OpenCSG::Intersection,
csgobj.leaf->geom->getConvexity()));
cull = std::make_shared<VertexState>();
cull->glBegin().emplace_back([]() { GL_TRACE0("glCullFace(GL_BACK)"); glCullFace(GL_BACK); });
vertex_states->emplace_back(std::move(cull));
vertex_states->emplace_back(surface);
cull = std::make_shared<VertexState>();
cull->glEnd().emplace_back([]() { GL_TRACE0("glDisable(GL_CULL_FACE)"); glDisable(GL_CULL_FACE); });
vertex_states->emplace_back(std::move(cull));
} else {
assert(false && "Intersection surface state was nullptr");
}
}
}
}
for(const auto &csgobj : product.subtractions) {
if (csgobj.leaf->geom) {
const PolySet* ps = dynamic_cast<const PolySet *>(csgobj.leaf->geom.get());
if (!ps) continue;
const Color4f &c = csgobj.leaf->color;
csgmode_e csgmode = get_csgmode(highlight_mode, background_mode, OpenSCADOperator::DIFFERENCE);
ColorMode colormode = ColorMode::NONE;
if (highlight_mode) {
colormode = ColorMode::HIGHLIGHT;
} else if (background_mode) {
colormode = ColorMode::BACKGROUND;
} else {
colormode = ColorMode::CUTOUT;
}
Color4f color;
if (getShaderColor(colormode, c, color)) {
last_color = color;
}
add_shader_pointers(vertex_array);
shaderinfo_t shader_info = this->getShader();
std::shared_ptr<VertexState> color_state = std::make_shared<VBOShaderVertexState>(0,0,vertex_array.verticesVBO(),vertex_array.elementsVBO());
color_state->glBegin().emplace_back([shader_info,last_color]() {
GL_TRACE("glUniform4f(%d, %f, %f, %f, %f)", shader_info.data.csg_rendering.color_area % last_color[0] % last_color[1] % last_color[2] % last_color[3]);
glUniform4f(shader_info.data.csg_rendering.color_area, last_color[0], last_color[1], last_color[2], last_color[3]); GL_ERROR_CHECK();
GL_TRACE("glUniform4f(%d, %f, %f, %f, 1.0)", shader_info.data.csg_rendering.color_edge % (last_color[0]+1)/2 % (last_color[1]+1)/2 % (last_color[2]+1)/2);
glUniform4f(shader_info.data.csg_rendering.color_edge, (last_color[0]+1)/2, (last_color[1]+1)/2, (last_color[2]+1)/2, 1.0); GL_ERROR_CHECK();
});
vertex_states->emplace_back(std::move(color_state));
// negative objects should only render rear faces
std::shared_ptr<VertexState> cull = std::make_shared<VertexState>();
cull->glBegin().emplace_back([]() { GL_TRACE0("glEnable(GL_CULL_FACE)"); glEnable(GL_CULL_FACE); GL_ERROR_CHECK(); });
cull->glBegin().emplace_back([]() { GL_TRACE0("glCullFace(GL_FRONT)"); glCullFace(GL_FRONT); GL_ERROR_CHECK(); });
vertex_states->emplace_back(std::move(cull));
create_surface(*ps, vertex_array, csgmode, csgobj.leaf->matrix, last_color);
std::shared_ptr<OpenCSGVertexState> surface = std::dynamic_pointer_cast<OpenCSGVertexState>(vertex_states->back());
if (surface != nullptr) {
surface->csgObjectIndex(csgobj.leaf->index);
primitives->emplace_back(createVBOPrimitive(surface,
OpenCSG::Subtraction,
csgobj.leaf->geom->getConvexity()));
} else {
assert(false && "Subtraction surface state was nullptr");
}
cull = std::make_shared<VertexState>();
cull->glEnd().emplace_back([]() { GL_TRACE0("glDisable(GL_CULL_FACE)"); glDisable(GL_CULL_FACE); }); GL_ERROR_CHECK();
vertex_states->emplace_back(std::move(cull));
}
}
if (Feature::ExperimentalVxORenderersDirect.is_enabled() || Feature::ExperimentalVxORenderersPrealloc.is_enabled()) {
if (Feature::ExperimentalVxORenderersIndexing.is_enabled()) {
GL_TRACE0("glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0)");
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); GL_ERROR_CHECK();
}
GL_TRACE0("glBindBuffer(GL_ARRAY_BUFFER, 0)");
glBindBuffer(GL_ARRAY_BUFFER, 0); GL_ERROR_CHECK();
}
vertex_array.createInterleavedVBOs();
vbo_vertex_products.emplace_back(std::make_unique<OpenCSGVBOProduct>(
std::move(primitives), std::move(vertex_states)));
}
#endif // ENABLE_OPENCSG
}
void OpenCSGRenderer::renderCSGProducts(const std::shared_ptr<CSGProducts> &products, bool showedges,
const Renderer::shaderinfo_t *shaderinfo,
bool highlight_mode, bool background_mode) const
{
#ifdef ENABLE_OPENCSG
if (!Feature::ExperimentalVxORenderers.is_enabled()) {
for(const auto &product : products->products) {
std::vector<OpenCSG::Primitive*> primitives;
for(const auto &csgobj : product.intersections) {
if (csgobj.leaf->geom) primitives.push_back(createCSGPrimitive(csgobj, OpenCSG::Intersection, highlight_mode, background_mode, OpenSCADOperator::INTERSECTION));
}
for(const auto &csgobj : product.subtractions) {
if (csgobj.leaf->geom) primitives.push_back(createCSGPrimitive(csgobj, OpenCSG::Subtraction, highlight_mode, background_mode, OpenSCADOperator::DIFFERENCE));
}
if (primitives.size() > 1) {
OpenCSG::render(primitives);
glDepthFunc(GL_EQUAL); GL_ERROR_CHECK();
}
if (shaderinfo && shaderinfo->progid) {
if (shaderinfo->type != EDGE_RENDERING ||
(shaderinfo->type == EDGE_RENDERING && showedges))
glUseProgram(shaderinfo->progid); GL_ERROR_CHECK();
}
for (const auto &csgobj : product.intersections) {
const PolySet* ps = dynamic_cast<const PolySet *>(csgobj.leaf->geom.get());
if (!ps) continue;
if (shaderinfo && shaderinfo->type == Renderer::SELECT_RENDERING) {
int identifier = csgobj.leaf->index;
glUniform3f(shaderinfo->data.select_rendering.identifier,
((identifier >> 0) & 0xff) / 255.0f, ((identifier >> 8) & 0xff) / 255.0f,
((identifier >> 16) & 0xff) / 255.0f); GL_ERROR_CHECK();
}
const Color4f &c = csgobj.leaf->color;
csgmode_e csgmode = get_csgmode(highlight_mode, background_mode);
ColorMode colormode = ColorMode::NONE;
if (highlight_mode) {
colormode = ColorMode::HIGHLIGHT;
} else if (background_mode) {
colormode = ColorMode::BACKGROUND;
} else {
colormode = ColorMode::MATERIAL;
}
glPushMatrix();
glMultMatrixd(csgobj.leaf->matrix.data());
const Color4f color = setColor(colormode, c.data(), shaderinfo);
if (color[3] == 1.0f) {
// object is opaque, draw normally
render_surface(*ps, csgmode, csgobj.leaf->matrix, shaderinfo);
} else {
// object is transparent, so draw rear faces first. Issue #1496
glEnable(GL_CULL_FACE);
glCullFace(GL_FRONT);
render_surface(*ps, csgmode, csgobj.leaf->matrix, shaderinfo);
glCullFace(GL_BACK);
render_surface(*ps, csgmode, csgobj.leaf->matrix, shaderinfo);
glDisable(GL_CULL_FACE);
}
glPopMatrix();
}
for(const auto &csgobj : product.subtractions) {
const PolySet* ps = dynamic_cast<const PolySet *>(csgobj.leaf->geom.get());
if (!ps) continue;
const Color4f &c = csgobj.leaf->color;
csgmode_e csgmode = get_csgmode(highlight_mode, background_mode, OpenSCADOperator::DIFFERENCE);
ColorMode colormode = ColorMode::NONE;
if (highlight_mode) {
colormode = ColorMode::HIGHLIGHT;
} else if (background_mode) {
colormode = ColorMode::BACKGROUND;
} else {
colormode = ColorMode::CUTOUT;
}
const Color4f color = setColor(colormode, c.data(), shaderinfo);
glPushMatrix();
glMultMatrixd(csgobj.leaf->matrix.data());
// negative objects should only render rear faces
glEnable(GL_CULL_FACE);
glCullFace(GL_FRONT);
render_surface(*ps, csgmode, csgobj.leaf->matrix, shaderinfo);
glDisable(GL_CULL_FACE);
glPopMatrix();
}
if (shaderinfo) glUseProgram(0);
for(auto &p : primitives) delete p;
glDepthFunc(GL_LEQUAL);
}
} else {
for (const auto &product : vbo_vertex_products) {
if (product->primitives().size() > 1) {
OpenCSG::render(product->primitives()); GL_ERROR_CHECK();
GL_TRACE0("glDepthFunc(GL_EQUAL)");
glDepthFunc(GL_EQUAL); GL_ERROR_CHECK();
}
if (shaderinfo && shaderinfo->progid) {
GL_TRACE("glUseProgram(%d)", shaderinfo->progid);
glUseProgram(shaderinfo->progid); GL_ERROR_CHECK();
if (shaderinfo->type == EDGE_RENDERING && showedges) {
shader_attribs_enable();
}
}
for(const auto &vs : product->states()) {
if (vs) {
std::shared_ptr<OpenCSGVertexState> csg_vs = std::dynamic_pointer_cast<OpenCSGVertexState>(vs);
if (csg_vs) {
if (shaderinfo && shaderinfo->type == SELECT_RENDERING) {
GL_TRACE("glUniform3f(%d, %f, %f, %f)", shaderinfo->data.select_rendering.identifier %
(((csg_vs->csgObjectIndex() >> 0) & 0xff) / 255.0f) %
(((csg_vs->csgObjectIndex() >> 8) & 0xff) / 255.0f) %
(((csg_vs->csgObjectIndex() >> 16) & 0xff) / 255.0f));
glUniform3f(shaderinfo->data.select_rendering.identifier,
((csg_vs->csgObjectIndex() >> 0) & 0xff) / 255.0f,
((csg_vs->csgObjectIndex() >> 8) & 0xff) / 255.0f,
((csg_vs->csgObjectIndex() >> 16) & 0xff) / 255.0f); GL_ERROR_CHECK();
}
}
std::shared_ptr<VBOShaderVertexState> shader_vs = std::dynamic_pointer_cast<VBOShaderVertexState>(vs);
if (!shader_vs || (showedges && shader_vs)) {
vs->draw();
}
}
}
if (shaderinfo && shaderinfo->progid) {
GL_TRACE0("glUseProgram(0)");
glUseProgram(0); GL_ERROR_CHECK();
if (shaderinfo->type == EDGE_RENDERING && showedges) {
shader_attribs_disable();
}
}
GL_TRACE0("glDepthFunc(GL_LEQUAL)");
glDepthFunc(GL_LEQUAL); GL_ERROR_CHECK();
}
}
#endif // ENABLE_OPENCSG
}
BoundingBox OpenCSGRenderer::getBoundingBox() const
{
BoundingBox bbox;
if (this->root_products) bbox = this->root_products->getBoundingBox();
if (this->highlights_products) bbox.extend(this->highlights_products->getBoundingBox());
if (this->background_products) bbox.extend(this->background_products->getBoundingBox());
return bbox;
}