diff --git a/src/Test/ShaderGLTest.cpp b/src/Test/ShaderGLTest.cpp index 909f3a03f..43d1d131e 100644 --- a/src/Test/ShaderGLTest.cpp +++ b/src/Test/ShaderGLTest.cpp @@ -46,7 +46,11 @@ void ShaderGLTest::label() { !Context::current()->isExtensionSupported()) CORRADE_SKIP("Required extension is not available"); + #ifndef MAGNUM_TARGET_GLES Shader shader(Version::GL210, Shader::Type::Vertex); + #else + Shader shader(Version::GLES200, Shader::Type::Vertex); + #endif CORRADE_COMPARE(shader.label(), ""); shader.setLabel("MyShader");