diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-08-03 21:37:51 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-08-03 21:37:51 (GMT) |
commit | f78d4f74b2606f3cccff0f241b608cb021a30b9b (patch) | |
tree | 6d61969163630b4ac88011eddb1894c65d768c78 /src/MainWindow.h | |
parent | 5aec712746eeac2e3bdf2501a7473bcac9777690 (diff) | |
parent | a35c801eec98803bf21d0d6c8d2748f0d9ccd507 (diff) |
Merge remote branch 'upstream/master'
Diffstat (limited to 'src/MainWindow.h')
-rw-r--r-- | src/MainWindow.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/MainWindow.h b/src/MainWindow.h index 43ab273..243a5ad 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -38,17 +38,18 @@ public: class CSGChain *root_chain; #ifdef ENABLE_CGAL class CGAL_Nef_polyhedron *root_N; - bool recreate_cgal_ogl_p; - void *cgal_ogl_p; - PolySet *cgal_ogl_ps; + class CGALRenderer *cgalRenderer; #endif +#ifdef ENABLE_OPENCSG + class OpenCSGRenderer *opencsgRenderer; +#endif + class ThrownTogetherRenderer *thrownTogetherRenderer; QVector<CSGTerm*> highlight_terms; CSGChain *highlights_chain; QVector<CSGTerm*> background_terms; CSGChain *background_chain; QString last_compiled_doc; - bool enableOpenCSG; static const int maxRecentFiles = 10; QAction *actionRecentFile[maxRecentFiles]; |