summaryrefslogtreecommitdiffstats
path: root/src/gui/egl
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@nokia.com>2010-11-09 14:57:24 (GMT)
committerSergio Ahumada <sergio.ahumada@nokia.com>2010-11-09 14:57:24 (GMT)
commit594420567e7bfbf4f7bce0845eaf4f7d7a1e9380 (patch)
tree921e2d6b29cd760c42e81e5f734979c3f7109e3e /src/gui/egl
parent83fb9c38d3f176b132138675be64ab477e72fe88 (diff)
downloadQt-594420567e7bfbf4f7bce0845eaf4f7d7a1e9380.zip
Qt-594420567e7bfbf4f7bce0845eaf4f7d7a1e9380.tar.gz
Qt-594420567e7bfbf4f7bce0845eaf4f7d7a1e9380.tar.bz2
Doc: Fixing typo
Diffstat (limited to 'src/gui/egl')
-rw-r--r--src/gui/egl/qegl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/egl/qegl.cpp b/src/gui/egl/qegl.cpp
index af3b79a..9b41909 100644
--- a/src/gui/egl/qegl.cpp
+++ b/src/gui/egl/qegl.cpp
@@ -210,7 +210,7 @@ EGLConfig QEgl::defaultConfig(int devType, API api, ConfigOptions options)
else
configId = qgetenv("QT_GL_EGL_CONFIG");
if (!configId.isEmpty()) {
- // Overriden, so get the EGLConfig for the specified config ID:
+ // Overridden, so get the EGLConfig for the specified config ID:
EGLint properties[] = {
EGL_CONFIG_ID, (EGLint)configId.toInt(),
EGL_NONE
@@ -267,7 +267,7 @@ EGLConfig QEgl::defaultConfig(int devType, API api, ConfigOptions options)
configAttribs.setValue(EGL_STENCIL_SIZE, 1);
configAttribs.setValue(EGL_SAMPLE_BUFFERS, 1);
#ifndef QT_OPENGL_ES_2
- // Aditionally, the GL1 engine likes to have a depth buffer for clipping
+ // Additionally, the GL1 engine likes to have a depth buffer for clipping
configAttribs.setValue(EGL_DEPTH_SIZE, 1);
#endif
}