summaryrefslogtreecommitdiffstats
path: root/src/opengl/qgl.cpp
diff options
context:
space:
mode:
authorCarolina Gomes <ext-carolina.s.gomes@nomovok.com>2010-03-29 03:34:12 (GMT)
committerTom Cooksey <thomas.cooksey@nokia.com>2010-04-14 12:57:00 (GMT)
commit131f634a2595ca7910c34bd07c311aea9de2bb62 (patch)
tree7109acd5b947093efa19a26d963e3d09e43a1e76 /src/opengl/qgl.cpp
parent65536764c06200762ea6308703eae7ee3df17b15 (diff)
downloadQt-131f634a2595ca7910c34bd07c311aea9de2bb62.zip
Qt-131f634a2595ca7910c34bd07c311aea9de2bb62.tar.gz
Qt-131f634a2595ca7910c34bd07c311aea9de2bb62.tar.bz2
More adjustments to QTBUG-6800
Merge-request: 2344 Reviewed-by: Tom Cooksey
Diffstat (limited to 'src/opengl/qgl.cpp')
-rw-r--r--src/opengl/qgl.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/opengl/qgl.cpp b/src/opengl/qgl.cpp
index c20c058..394bcbc 100644
--- a/src/opengl/qgl.cpp
+++ b/src/opengl/qgl.cpp
@@ -2771,9 +2771,9 @@ void QGLContext::drawTexture(const QRectF &target, GLuint textureId, GLenum text
if (d_ptr->active_engine &&
d_ptr->active_engine->type() == QPaintEngine::OpenGL2) {
QGL2PaintEngineEx *eng = static_cast<QGL2PaintEngineEx*>(d_ptr->active_engine);
- if (eng->isNativePaintingActive() == false) {
- QRectF src = QRectF(0, 0, target.width(), target.height());
- QSize size = QSize(target.width(), target.height());
+ if (!eng->isNativePaintingActive()) {
+ QRectF src(0, 0, target.width(), target.height());
+ QSize size(target.width(), target.height());
eng->drawTexture(target, textureId, size, src);
return;
}
@@ -2846,10 +2846,10 @@ void QGLContext::drawTexture(const QPointF &point, GLuint textureId, GLenum text
if (d_ptr->active_engine &&
d_ptr->active_engine->type() == QPaintEngine::OpenGL2) {
QGL2PaintEngineEx *eng = static_cast<QGL2PaintEngineEx*>(d_ptr->active_engine);
- if (eng->isNativePaintingActive() == false) {
- QRectF dest = QRectF(point, QSizeF(textureWidth, textureHeight));
- QRectF src = QRectF(0, 0, textureWidth, textureHeight);
- QSize size = QSize(textureWidth, textureHeight);
+ if (!eng->isNativePaintingActive()) {
+ QRectF dest(point, QSizeF(textureWidth, textureHeight));
+ QRectF src(0, 0, textureWidth, textureHeight);
+ QSize size(textureWidth, textureHeight);
eng->drawTexture(dest, textureId, size, src);
return;
}