summaryrefslogtreecommitdiffstats
path: root/src/opengl/qglextensions.cpp
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2009-09-21 23:56:52 (GMT)
committerRhys Weatherley <rhys.weatherley@nokia.com>2009-09-21 23:56:52 (GMT)
commit40bdb6a5bed66385c3c2320447b1530e99befeb3 (patch)
treea835568f63a6c82be2e19556ebd55a4f42b3c0d2 /src/opengl/qglextensions.cpp
parentc3a61f2a5d85503df84a818a7c15ef7c644fb981 (diff)
downloadQt-40bdb6a5bed66385c3c2320447b1530e99befeb3.zip
Qt-40bdb6a5bed66385c3c2320447b1530e99befeb3.tar.gz
Qt-40bdb6a5bed66385c3c2320447b1530e99befeb3.tar.bz2
Revert "Resubmit support for subpixel antialiasing on text in the GL2 engine."
This reverts commit 1b34feacef7a2d3ac005449a7cfbcb08a6bbf947.
Diffstat (limited to 'src/opengl/qglextensions.cpp')
-rw-r--r--src/opengl/qglextensions.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/opengl/qglextensions.cpp b/src/opengl/qglextensions.cpp
index c785d8a..3699d62 100644
--- a/src/opengl/qglextensions.cpp
+++ b/src/opengl/qglextensions.cpp
@@ -391,9 +391,8 @@ bool qt_resolve_version_2_0_functions(QGLContext *ctx)
if (glStencilOpSeparate)
return gl2supported;
- glBlendColor = (_glBlendColor) ctx->getProcAddress(QLatin1String("glBlendColor"));
glStencilOpSeparate = (_glStencilOpSeparate) ctx->getProcAddress(QLatin1String("glStencilOpSeparate"));
- if (!glBlendColor || !glStencilOpSeparate)
+ if (!glStencilOpSeparate)
gl2supported = false;
return gl2supported;