diff --git a/lib/kwinglplatform.cpp b/lib/kwinglplatform.cpp index 51b869e034..37fddc9a59 100644 --- a/lib/kwinglplatform.cpp +++ b/lib/kwinglplatform.cpp @@ -587,7 +587,8 @@ void GLPlatform::detect() // Sample renderer string: Gallium 0.4 on AMD RV740 const QList tokens = m_renderer.split(' '); m_galliumVersion = parseVersionString(tokens.at(1)); - m_chipset = tokens.at(3) == "AMD" ? tokens.at(4) : tokens.at(3); + m_chipset = (tokens.at(3) == "AMD" || tokens.at(3) == "ATI") ? + tokens.at(4) : tokens.at(3); // R300G if (m_vendor == "X.Org R300 Project") {