From 68974d8e647febb80a47d9cf6ce9452f3ce4fa21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Wed, 7 Sep 2011 09:50:03 +0200 Subject: Added equivalent to tst_QGL::destroyFBOAfterContext() in tst_QOpenGL. The more the merrier. Change-Id: I401ed97600a890c38cb4d5dbe0578d6bcf68e909 Reviewed-on: http://codereview.qt-project.org/4322 Reviewed-by: Qt Sanity Bot Reviewed-by: Paul Olav Tvete --- tests/auto/qopengl/tst_qopengl.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'tests') diff --git a/tests/auto/qopengl/tst_qopengl.cpp b/tests/auto/qopengl/tst_qopengl.cpp index 173d1e4568..353391c543 100644 --- a/tests/auto/qopengl/tst_qopengl.cpp +++ b/tests/auto/qopengl/tst_qopengl.cpp @@ -53,6 +53,7 @@ private slots: void sharedResourceCleanup(); void fboSimpleRendering(); void fboRendering(); + void fboHandleNulledAfterContextDestroyed(); }; struct SharedResourceTracker @@ -358,5 +359,31 @@ void tst_QOpenGL::fboRendering() qt_opengl_check_test_pattern(fb); } +void tst_QOpenGL::fboHandleNulledAfterContextDestroyed() +{ + QWindow window; + window.setGeometry(0, 0, 10, 10); + window.create(); + + QOpenGLFramebufferObject *fbo = 0; + + { + QOpenGLContext ctx; + ctx.create(); + + ctx.makeCurrent(&window); + + if (!QOpenGLFramebufferObject::hasOpenGLFramebufferObjects()) { + QSKIP("QOpenGLFramebufferObject not supported on this platform", SkipSingle); + } + + fbo = new QOpenGLFramebufferObject(128, 128); + + QVERIFY(fbo->handle() != 0); + } + + QCOMPARE(fbo->handle(), 0U); +} + QTEST_MAIN(tst_QOpenGL) #include "tst_qopengl.moc" -- cgit v1.2.3