aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/scenegraph
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/scenegraph')
-rw-r--r--tests/auto/quick/scenegraph/tst_scenegraph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/quick/scenegraph/tst_scenegraph.cpp b/tests/auto/quick/scenegraph/tst_scenegraph.cpp
index 86f971041f..c0d1b53e92 100644
--- a/tests/auto/quick/scenegraph/tst_scenegraph.cpp
+++ b/tests/auto/quick/scenegraph/tst_scenegraph.cpp
@@ -439,7 +439,7 @@ void tst_SceneGraph::render()
QQuickView dummy;
dummy.show();
QTest::qWaitForWindowExposed(&dummy);
- if (dummy.rendererInterface()->graphicsAPI() != QSGRendererInterface::OpenGL)
+ if (dummy.rendererInterface()->graphicsApi() != QSGRendererInterface::OpenGL)
QSKIP("Skipping complex rendering tests due to not running with OpenGL");
dummy.hide();
@@ -506,7 +506,7 @@ void tst_SceneGraph::hideWithOtherContext()
view.show();
QVERIFY(QTest::qWaitForWindowExposed(&view));
- if (view.rendererInterface()->graphicsAPI() != QSGRendererInterface::OpenGL)
+ if (view.rendererInterface()->graphicsApi() != QSGRendererInterface::OpenGL)
QSKIP("Skipping OpenGL context test due to not running with OpenGL");
renderingOnMainThread = view.openglContext()->thread() == QGuiApplication::instance()->thread();