From 1e6a88a9ddf2712097a814200b3bc40368ab4184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 19 Jun 2016 20:35:15 +0200 Subject: [PATCH] Properly check that EXT_texture_array is supported in the test. --- src/Magnum/Test/FramebufferGLTest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Magnum/Test/FramebufferGLTest.cpp b/src/Magnum/Test/FramebufferGLTest.cpp index fbe32f287..c99f02b15 100644 --- a/src/Magnum/Test/FramebufferGLTest.cpp +++ b/src/Magnum/Test/FramebufferGLTest.cpp @@ -484,6 +484,8 @@ void FramebufferGLTest::attachTexture3D() { void FramebufferGLTest::attachTexture1DArray() { if(!Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::GL::ARB::framebuffer_object::string() + std::string(" is not available.")); + if(!Context::current().isExtensionSupported()) + CORRADE_SKIP(Extensions::GL::EXT::texture_array::string() + std::string(" is not available.")); Texture1DArray color; color.setStorage(1, TextureFormat::RGBA8, {128, 8});