diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-06-03 16:54:36 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-06-03 17:44:57 +0200 |
commit | 03aa4f88cf6a8993b2659f2060606577cb445c9e (patch) | |
tree | f34e027a945d8396b60ef31c5dcbc823b39162b4 /vcl/opengl | |
parent | 682d5eab3068a7889590b86120a6cfdec87f6d1f (diff) |
document that it is a reference to a mozilla bug
Change-Id: Ic57a0785db05908ffd9faef30544646d2e70ee5a
Diffstat (limited to 'vcl/opengl')
-rw-r--r-- | vcl/opengl/x11/X11DeviceInfo.cxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/vcl/opengl/x11/X11DeviceInfo.cxx b/vcl/opengl/x11/X11DeviceInfo.cxx index 74e84c607bd4..9c1e901f0ca9 100644 --- a/vcl/opengl/x11/X11DeviceInfo.cxx +++ b/vcl/opengl/x11/X11DeviceInfo.cxx @@ -116,9 +116,8 @@ void X11OpenGLDeviceInfo::GetData() if (!glx::glxtest_pipe) return; - // to understand this function, see bug 639842. We retrieve the OpenGL driver information in a + // to understand this function, see bug moz#639842. We retrieve the OpenGL driver information in a // separate process to protect against bad drivers. - enum { buf_size = 1024 }; char buf[buf_size]; ssize_t bytesread = read(glx::glxtest_pipe, @@ -149,9 +148,9 @@ void X11OpenGLDeviceInfo::GetData() if (waitpid_errno == EINTR) { wait_for_glxtest_process = true; } else { - // Bug 718629 + // Bug moz#718629 // ECHILD happens when the glxtest process got reaped got reaped after a PR_CreateProcess - // as per bug 227246. This shouldn't matter, as we still seem to get the data + // as per bug moz#227246. This shouldn't matter, as we still seem to get the data // from the pipe, and if we didn't, the outcome would be to blacklist anyway. waiting_for_glxtest_process_failed = (waitpid_errno != ECHILD); } @@ -290,7 +289,7 @@ bool X11OpenGLDeviceInfo::isDeviceBlocked() return true; } else if (mbIsLlvmpipe && version(mnMajorVersion, mnMinorVersion) < version(9, 1)) { - // bug 791905, Mesa bug 57733, fixed in Mesa 9.1 according to + // bug moz#791905, Mesa bug 57733, fixed in Mesa 9.1 according to // https://bugs.freedesktop.org/show_bug.cgi?id=57733#c3 SAL_WARN("vcl.opengl", "blocked driver version: fdo#57733"); return true; @@ -308,7 +307,7 @@ bool X11OpenGLDeviceInfo::isDeviceBlocked() SAL_WARN("vcl.opengl", "blocked driver version: require at least OpenGL 3 for fglrx"); return true; } - // Bug 724640: FGLRX + Linux 2.6.32 is a crashy combo + // Bug moz#724640: FGLRX + Linux 2.6.32 is a crashy combo bool unknownOS = maOS.isEmpty() || maOSRelease.isEmpty(); bool badOS = maOS.indexOf("Linux") != -1 && maOSRelease.indexOf("2.6.32") != -1; |