diff --git a/lanczosfilter.cpp b/lanczosfilter.cpp index 69b9708b9b..295e946e20 100644 --- a/lanczosfilter.cpp +++ b/lanczosfilter.cpp @@ -642,6 +642,10 @@ bool LanczosShader::init() if (!hasGLExtension("GL_ARB_fragment_program")) return false; + // We allow Lanczos for SandyBridge or later, but only GLSL shaders are supported, see BUG 301729 + if (gl->isIntel()) + return false; + QByteArray text; QTextStream stream(&text);