diff options
author | mread <qt-info@nokia.com> | 2012-01-10 16:20:18 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-01-13 19:50:49 (GMT) |
commit | 0ce52668616eba11de6c8255ec5319db3405483a (patch) | |
tree | fee215fd28d354482ba9b2f467a867e5d8876fa1 /src/opengl/qgl_symbian.cpp | |
parent | 8a2c25945e8458a0b8582ad0860d08e3572170f4 (diff) | |
download | Qt-0ce52668616eba11de6c8255ec5319db3405483a.zip Qt-0ce52668616eba11de6c8255ec5319db3405483a.tar.gz Qt-0ce52668616eba11de6c8255ec5319db3405483a.tar.bz2 |
Using samples=0 to turn multisampling off
Change 54613aec was using the value 1 for QGLFormat::samples when it
wanted multisampling off. But this was actually resulting in
multisampling being turned on. It should have been using 0, which it
now does.
Task-number: ou1cimx1#951223
Change-Id: Ie68367f083f7ab4bae4143a59996c71add3e5c06
Reviewed-by: Pasi Pentikäinen <ext-pasi.a.pentikainen@nokia.com>
Diffstat (limited to 'src/opengl/qgl_symbian.cpp')
-rw-r--r-- | src/opengl/qgl_symbian.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opengl/qgl_symbian.cpp b/src/opengl/qgl_symbian.cpp index f2535d5..91f46b9 100644 --- a/src/opengl/qgl_symbian.cpp +++ b/src/opengl/qgl_symbian.cpp @@ -192,7 +192,7 @@ bool QGLContext::chooseContext(const QGLContext* shareContext) // almost same as d->glFormat.setSamples(4); } else { d->glFormat.setSampleBuffers(0); - d->glFormat.setSamples(1); + d->glFormat.setSamples(0); } } |