Kaydet (Commit) e7f09e0d authored tarafından Markus Mohrhard's avatar Markus Mohrhard

block my OpenGL driver

Kendy and I both ahve the same issue related to the driver returning the
wrong attribute location in some shaders

Change-Id: I496c0f545f7c28c71a94ca8a9ff9fb0b0df46005
üst 743f34d9
...@@ -279,6 +279,11 @@ bool X11OpenGLDeviceInfo::isDeviceBlocked() ...@@ -279,6 +279,11 @@ bool X11OpenGLDeviceInfo::isDeviceBlocked()
SAL_WARN("vcl.opengl", "blocked driver version: requires at least mesa 7.10.3"); SAL_WARN("vcl.opengl", "blocked driver version: requires at least mesa 7.10.3");
return true; return true;
} }
else if (mbIsIntel && version(mnMajorVersion, mnMinorVersion, mnRevisionVersion) == version(9,0,2))
{
SAL_WARN("vcl.opengl", "blocked driver version: my broken intel driver Mesa 9.0.2");
return true;
}
else if (mbIsOldSwrast) { else if (mbIsOldSwrast) {
SAL_WARN("vcl.opengl", "blocked driver version: software rasterizer"); SAL_WARN("vcl.opengl", "blocked driver version: software rasterizer");
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment