summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/opengl/legacy/hellogl/glwidget.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/opengl/legacy/hellogl/glwidget.cpp b/examples/opengl/legacy/hellogl/glwidget.cpp
index 84daf074e2..22934136e5 100644
--- a/examples/opengl/legacy/hellogl/glwidget.cpp
+++ b/examples/opengl/legacy/hellogl/glwidget.cpp
@@ -177,11 +177,7 @@ void GLWidget::resizeGL(int width, int height)
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
-#ifdef QT_OPENGL_ES_1
- glOrthof(-0.5, +0.5, -0.5, +0.5, 4.0, 15.0);
-#else
glOrtho(-0.5, +0.5, -0.5, +0.5, 4.0, 15.0);
-#endif
glMatrixMode(GL_MODELVIEW);
}
//! [8]