From 39f6e849a6fd86621cbcf772477bad749473b6ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 7 Jan 2016 09:12:58 +0100 Subject: [PATCH] Properly check for all extensions in object label test. --- src/Magnum/Test/AbstractObjectGLTest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Magnum/Test/AbstractObjectGLTest.cpp b/src/Magnum/Test/AbstractObjectGLTest.cpp index 0cece2beb..eb010b8dd 100644 --- a/src/Magnum/Test/AbstractObjectGLTest.cpp +++ b/src/Magnum/Test/AbstractObjectGLTest.cpp @@ -43,6 +43,8 @@ AbstractObjectGLTest::AbstractObjectGLTest() { void AbstractObjectGLTest::labelNoOp() { if(Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::GL::KHR::debug::string() + std::string(" is supported.")); + if(Context::current().isExtensionSupported()) + CORRADE_SKIP(Extensions::GL::EXT::debug_label::string() + std::string(" is supported.")); Buffer buffer; buffer.setLabel("MyBuffer");