diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-02-23 21:34:06 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-02-23 21:34:06 (GMT) |
commit | 5389107aa684ab99701e238a7297f07b35f7d521 (patch) | |
tree | 327a51e43bcb642c849c5cfafadf8e84966c662d /src/CsgInfo.h | |
parent | 4f578513a0960d4f079260922cdc86de0948099c (diff) |
create GLView as parent of OffscreenView and QGLView. combine setRenderer()
Diffstat (limited to 'src/CsgInfo.h')
-rw-r--r-- | src/CsgInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CsgInfo.h b/src/CsgInfo.h index 6c3e352..889eefe 100644 --- a/src/CsgInfo.h +++ b/src/CsgInfo.h @@ -6,8 +6,8 @@ class CsgInfo { public: - CsgInfo() { qglview = NULL; } - OffscreenView *qglview; + CsgInfo() { glview = NULL; } + OffscreenView *glview; }; @@ -26,7 +26,7 @@ public: root_chain = NULL; highlights_chain = NULL; background_chain = NULL; - qglview = NULL; + glview = NULL; } shared_ptr<CSGTerm> root_norm_term; // Normalized CSG products class CSGChain *root_chain; |