summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/opengl/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/opengl/main.cpp')
-rw-r--r--tests/benchmarks/opengl/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/benchmarks/opengl/main.cpp b/tests/benchmarks/opengl/main.cpp
index 0886c0e55b..9462f35c38 100644
--- a/tests/benchmarks/opengl/main.cpp
+++ b/tests/benchmarks/opengl/main.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2020 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
@@ -27,6 +27,7 @@
****************************************************************************/
#include <QtGui>
#include <QtOpenGL>
+#include <QtCore/QElapsedTimer>
#include <qtest.h>
@@ -400,7 +401,7 @@ void OpenGLBench::textureUpload()
pb->makeCurrent();
QGLContext *context = const_cast<QGLContext *>(QGLContext::currentContext());
- QTime time;
+ QElapsedTimer time;
time.start();
context->bindTexture(pixmap, GL_TEXTURE_2D, format, (QGLContext::BindOptions) flags);