[libkwineffects] Require strict binding for intel driver
According to driver devs it's a "buggy micro-optimisation", see https://bugs.freedesktop.org/show_bug.cgi?id=80349#c1 BUG: 336589 REVIEW: 118893
This commit is contained in:
parent
9c03793fac
commit
e8241313fc
1 changed files with 2 additions and 1 deletions
|
@ -811,7 +811,8 @@ void GLPlatform::detect(OpenGLPlatformInterface platformInterface)
|
|||
m_supportsGLSL = false;
|
||||
|
||||
m_limitedGLSL = m_supportsGLSL && m_chipClass < I965;
|
||||
m_looseBinding = true;
|
||||
// see https://bugs.freedesktop.org/show_bug.cgi?id=80349#c1
|
||||
m_looseBinding = false;
|
||||
|
||||
if (m_chipClass < I915) {
|
||||
m_recommendedCompositor = XRenderCompositing;
|
||||
|
|
Loading…
Reference in a new issue