diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-21 08:33:03 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-21 08:33:03 (GMT) |
commit | d83c5c21764d557ee43927e6753fa18ac3d99d22 (patch) | |
tree | 0f54e3a9650d14bdba09b170d21281e9468e6a81 | |
parent | 230e3306fc0195fa7251884ee73f753ce04b4711 (diff) |
Clifford Wolf:
Disabled OpenGL multisample buffer
(it adds rendering artefacts with OpenCSG)
git-svn-id: http://svn.clifford.at/openscad/trunk@448 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | src/openscad.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/openscad.cc b/src/openscad.cc index 0afc39e..f23848b 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -279,11 +279,13 @@ int main(int argc, char **argv) installAppleEventHandlers(); #endif +#if 0 /*** disabled by clifford wolf: adds rendering artefacts with OpenCSG ***/ // turn on anti-aliasing QGLFormat f; f.setSampleBuffers(true); f.setSamples(4); QGLFormat::setDefaultFormat(f); +#endif #ifdef ENABLE_MDI new MainWindow(filename); while (optind < argc) |