[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2018-06-11 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel Status: Confirmed => Fix Released -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with

[Ubuntu-x-swat] [Bug 416421]

2018-06-11 Thread Ajax-a
commit 1b94fd77792310c80b0a2bcf4bf6d4e4c4c23bca Author: Alex Orange Date: Fri Oct 3 15:41:38 2014 -0600 fb: Fix Bresenham algorithms for commonly used small segments. -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to

[Ubuntu-x-swat] [Bug 416421]

2013-04-09 Thread Slapinid
This bug still occurs with Kicad and recent X11 -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with dual monitors (using DisplayPort)

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2013-04-09 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel Status: Fix Released = Confirmed -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with

[Ubuntu-x-swat] [Bug 416421]

2012-09-05 Thread Jeremy Huddleston
This has caused a regression: https://bugs.freedesktop.org/show_bug.cgi?id=54168 -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2012-09-05 Thread Bug Watch Updater
** Bug watch added: freedesktop.org Bugzilla #54168 https://bugs.freedesktop.org/show_bug.cgi?id=54168 -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45]

[Ubuntu-x-swat] [Bug 416421]

2012-08-22 Thread Mattst88
Committed as http://cgit.freedesktop.org/xorg/xserver/commit/?id=863d528a9f76d0e8f122aebf19f8564a4c67a938 -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45]

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2012-08-22 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel Status: Confirmed = Fix Released -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with

[Ubuntu-x-swat] [Bug 416421]

2012-03-27 Thread Mjd+freedesktop-org
I am getting this crash when doing zone fills in KiCad. Fedora 16, unaccelerated video. I have applied Simon Schubert's patch, and the crashes no longer happen. -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in

[Ubuntu-x-swat] [Bug 416421]

2012-03-27 Thread Mjd+freedesktop-org
Created attachment 59095 A backtrace of a crash caused by this problem -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with dual

[Ubuntu-x-swat] [Bug 416421]

2012-02-22 Thread Simon Schubert
Created attachment 57155 reorder Bresenham error correction to avoid overshoot. When fbBresSolid draws a line, it can happen that after the last pixel, the Bresenham error term overflows, and fbBresSolid paints another pixel before adjusting the error term. However, if this happens on the last

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2012-02-03 Thread Bryce Harrington
We're closing this bug since it is has been some time with no response from the original bug reporter. However, if the issue still exists in the latest development version of Ubuntu and you are the original reporter please feel free to reopen with the requested information. If you are not the

[Ubuntu-x-swat] [Bug 416421]

2012-01-26 Thread Simon Schubert
Created attachment 56113 gdb backtrace gdb backtrace of the bug. dst is out of bounds. I can provide core file and binaries if required. -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu.

[Ubuntu-x-swat] [Bug 416421]

2012-01-26 Thread Simon Schubert
The problem seems to be that there are negative coordinates being passed in to ProcPolySegment: (gdb) p/x *(xSegment*)((xPolySegmentReq *)0x2918e1c)[1] $11 = {x1 = 0x24, y1 = 0x10, x2 = 0xfffe, y2 = 0x} I don't know who is supposed to catch

[Ubuntu-x-swat] [Bug 416421]

2012-01-26 Thread Chris Wilson
Clipping is performed in fbSegment(), see OUTCODES() and miZeroClipLine(). -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with dual

[Ubuntu-x-swat] [Bug 416421]

2012-01-26 Thread Simon Schubert
Ah. I believe this is the problem, or at least very closely related: http://cgit.freedesktop.org/xorg/xserver/tree/fb/fbseg.c#n693: if (clip2 != 0 || drawLast) len++; in combination with these variables: new_x1 = 36 new_x2 = 0 new_y1 = 16

[Ubuntu-x-swat] [Bug 416421]

2012-01-26 Thread Simon Schubert
Ok, I see what is going on there. The len++ is to make the end coordinates inclusive, which they should be if drawLast is set, or if we clipped the end. Now, we changed the end coordinates, but we keep the Bresenham error terms, because we want the same angle (I suppose). However, if we look at

[Ubuntu-x-swat] [Bug 416421]

2012-01-26 Thread Simon Schubert
Just a follow-up to say that solution (d) seems to work for me. -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with dual monitors

[Ubuntu-x-swat] [Bug 416421]

2012-01-24 Thread Renato Caldas
I cannot reproduce this with 1.9.5, and judging by the date of this bug I assume it can be closed, right? -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in Ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45]

[Ubuntu-x-swat] [Bug 416421]

2012-01-24 Thread Simon Schubert
I experience a related bug when using KiCad: [ 2507.868] Backtrace: [ 2507.868] 0: /usr/bin/X (xorg_backtrace+0x26) [0x566a86] [ 2507.868] 1: /usr/bin/X (0x40+0x16a6e9) [0x56a6e9] [ 2507.868] 2: /lib/libpthread.so.0 (0x7fa9d12c8000+0xf8a0) [0x7fa9d12d78a0] [ 2507.868] 3:

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2011-04-27 Thread bugbot
This bug report was filed against an old version of Ubuntu. Can you confirm whether this is still an issue in natty? Please also ensure this bug has tags for each Ubuntu release that the bug is confirmed as affecting. ** Changed in: xserver-xorg-video-intel (Ubuntu) Status: Confirmed =

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2011-02-05 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel Importance: Unknown = High -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with dual monitors

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2011-01-25 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel Importance: High = Unknown -- You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in ubuntu. https://bugs.launchpad.net/bugs/416421 Title: [gm45] X crash on X200s with dual monitors

[Ubuntu-x-swat] [Bug 416421] Re: [g45] [gm45] X crash on X200s with dual monitors (using DisplayPort)

2010-03-02 Thread Bryce Harrington
** Summary changed: - [gm45] X crash on X200s with dual monitors (using DisplayPort) + [g45] [gm45] X crash on X200s with dual monitors (using DisplayPort) -- [g45] [gm45] X crash on X200s with dual monitors (using DisplayPort) https://bugs.launchpad.net/bugs/416421 You received this bug

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2010-03-02 Thread Bryce Harrington
** Summary changed: - [g45] [gm45] X crash on X200s with dual monitors (using DisplayPort) + [gm45] X crash on X200s with dual monitors (using DisplayPort) -- [gm45] X crash on X200s with dual monitors (using DisplayPort) https://bugs.launchpad.net/bugs/416421 You received this bug notification

[Ubuntu-x-swat] [Bug 416421] Re: [gm45] X crash on X200s with dual monitors (using DisplayPort)

2009-11-02 Thread Bryce Harrington
** Summary changed: - X crash on X200s with dual monitors (using DisplayPort) + [gm45] X crash on X200s with dual monitors (using DisplayPort) -- [gm45] X crash on X200s with dual monitors (using DisplayPort) https://bugs.launchpad.net/bugs/416421 You received this bug notification because you

[Ubuntu-x-swat] [Bug 416421] Re: X crash on X200s with dual monitors (using DisplayPort)

2009-10-02 Thread Luka Renko
This bug has similar backtrace as bug 415357 (which is easy to reproduce at least), therefore I have added upstream bug to watchlist. ** Bug watch added: freedesktop.org Bugzilla #24274 https://bugs.freedesktop.org/show_bug.cgi?id=24274 ** Also affects: xserver-xorg-video-intel via

[Ubuntu-x-swat] [Bug 416421] Re: X crash on X200s with dual monitors (using DisplayPort)

2009-09-02 Thread Bryce Harrington
** Tags added: kubuntu -- X crash on X200s with dual monitors (using DisplayPort) https://bugs.launchpad.net/bugs/416421 You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in ubuntu.

[Ubuntu-x-swat] [Bug 416421] [NEW] X crash on X200s with dual monitors (using DisplayPort)

2009-08-20 Thread Luka Renko
Public bug reported: Binary package hint: xserver-xorg-video-intel Up-to-date Kubuntu Karmic. Not using Desktop Effects (compositing). I have ThinkPad X200s with X4500 graphics. I am using it in dual monitor setup with HP L2045w connected over DVI-DisplayPort. I use the following xrandr command

[Ubuntu-x-swat] [Bug 416421] Re: X crash on X200s with dual monitors (using DisplayPort)

2009-08-20 Thread Luka Renko
** Attachment added: BootDmesg.txt http://launchpadlibrarian.net/30574674/BootDmesg.txt ** Attachment added: CurrentDmesg.txt http://launchpadlibrarian.net/30574675/CurrentDmesg.txt ** Attachment added: Dependencies.txt http://launchpadlibrarian.net/30574676/Dependencies.txt **

[Ubuntu-x-swat] [Bug 416421] Re: X crash on X200s with dual monitors (using DisplayPort)

2009-08-20 Thread Luka Renko
Note: I have to use xrandr command, as by default I do not get native monitor resolution displayed - see bug 286001 -- X crash on X200s with dual monitors (using DisplayPort) https://bugs.launchpad.net/bugs/416421 You received this bug notification because you are a member of Ubuntu-X, which is

[Ubuntu-x-swat] [Bug 416421] Re: X crash on X200s with dual monitors (using DisplayPort)

2009-08-20 Thread Geir Ove Myhr
** Tags added: crash gm45 karmic -- X crash on X200s with dual monitors (using DisplayPort) https://bugs.launchpad.net/bugs/416421 You received this bug notification because you are a member of Ubuntu-X, which is subscribed to xserver-xorg-video-intel in ubuntu.

[Ubuntu-x-swat] [Bug 416421] Re: X crash on X200s with dual monitors (using DisplayPort)

2009-08-20 Thread Bryce Harrington
** Changed in: xserver-xorg-video-intel (Ubuntu) Status: New = Confirmed -- X crash on X200s with dual monitors (using DisplayPort) https://bugs.launchpad.net/bugs/416421 You received this bug notification because you are a member of Ubuntu-X, which is subscribed to