[ANNOUNCE] xf86-video-siliconmotion 1.7.0

2008-12-30 Thread Paulo César Pereira de Andrade
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Xorg SiliconMotion Video Driver 1.7.0 features include support for SMI 50x chipsets, RandR 1.2, EXA acceleration Method, Dual Head, etc. Special thanks to Teddy Wang teddy.wang AT siliconmotion.com.cn for support and help in responding and/or

Re: Xorg segfaults on XOpenDisplay multi thread

2008-12-30 Thread Matan Drori
Hi Daniel, we are currently using Xorg 6.9(cannot change the version) we also have several pipes, meaning we need to open several displays. and of course we need to do it in threads. Do you have any suggestions? Daniel Stone wrote: On Mon, Dec 29, 2008 at 11:06:27AM +0200, Matan Drori wrote:

Re: xserver: Branch 'master'

2008-12-30 Thread Sascha Hlusiak
Daniel Stone schrieb: xkb/xkbUtils.c | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) New commits: commit 48dbaf173a82693fd72953983da9fc556cd1c6ed Author: Daniel Stone dan...@fooishbar.org Date: Tue Dec 30 12:17:14 2008 +1100 XKB: Also copy keyboard

Re: xserver: Branch 'master'

2008-12-30 Thread Colin Guthrie
'Twas brillig, and Sascha Hlusiak at 30/12/08 12:56 did gyre and gimble: Daniel Stone schrieb: xkb/xkbUtils.c | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) New commits: commit 48dbaf173a82693fd72953983da9fc556cd1c6ed Author: Daniel Stone dan...@fooishbar.org

Re: xserver: Branch 'master'

2008-12-30 Thread Daniel Stone
On Tue, Dec 30, 2008 at 01:56:22PM +0100, Sascha Hlusiak wrote: Daniel Stone schrieb: commit 48dbaf173a82693fd72953983da9fc556cd1c6ed Author: Daniel Stone dan...@fooishbar.org Date: Tue Dec 30 12:17:14 2008 +1100 XKB: Also copy keyboard feedback when copying the keymap

Re: bump: Xorg segfaults on XOpenDisplay multi thread

2008-12-30 Thread Bill Crawford
On Sunday 28 December 2008 08:56:50 Matan Drori wrote: Bump, adding some backtraces: Dump 1: #0 _X11TransWritev (ciptr=0x0, buf=0x21b96720, size=1) at ../../lib/xtrans/Xtrans.c:911 #1 0x20093910 in _XSendClientPrefix (dpy=value optimized out, client=value optimized out,

xf86-video-savage: Document existence of IgnoreEDID option

2008-12-30 Thread Alex Villací­s Lasso
This flag was added by me in a patch, but forgot to update the man page. This patch adds such update. Changelog: Document existence of IgnoreEDID option. -- perl -e '$x=2.4;print sprintf(%.0f + %.0f = %.0f\n,$x,$x,$x+$x);' From c67186bbb0070f53f2e801a71967f5482ae76789 Mon Sep 17 00:00:00 2001

xf86-video-savage: (1/2) YUV packed buffer and YV12 planar buffer (if required) are now separate allocations

2008-12-30 Thread Alex Villací­s Lasso
This is a preparation for the next patch (placing XVideo YV12 data in AGP memory). Currently a single buffer is allocated for YV12 planar data and the YUY2 packed data that is the true format that the card can display. This patch splits the buffers into two separate allocations, and adds the

xf86-video-savage: (2/2) Implement AGPforXv option

2008-12-30 Thread Alex Villací­s Lasso
This patch adds the capability to place YV12 data in AGP memory while it is being converted to packed YUY2. The single most expensive operation in XVideo rendering on savage (on current implementation) is the upload to the framebuffer. By placing YV12 data in an AGP buffer, the CPU saves

xf86-video-savage: EXA: use memcpy instead of loop for UploadToScreen operation

2008-12-30 Thread Alex Villací­s Lasso
Optimization. Saves one compare per DWORD for common case where BCI queue has ample space for bitmap data. Changelog: * EXA: use memcpy instead of loop for UploadToScreen operation -- perl -e '$x=2.4;print sprintf(%.0f + %.0f = %.0f\n,$x,$x,$x+$x);' From

ANN: xterm patch #238

2008-12-30 Thread Thomas Dickey
Patch #238 - 2008/12/30 * update configure macro CF_XOPEN_SOURCE for AIX 6.x and Mint platforms. * reset the screen wrapping-flag at the end of ClearRight to fix an occasional case where the last character of a scrolled and wrapped

[PATCH] Call xf86CrtcConfigInit() from within SavagePreInit(), fixes #19337

2008-12-30 Thread frankdelange
From: Frank de Lange freedeskto...@unternet.org --- src/savage_driver.c | 21 + 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/src/savage_driver.c b/src/savage_driver.c index 919bd1a..1e93be0 100644 --- a/src/savage_driver.c +++ b/src/savage_driver.c @@

Autorepeat question - quick review

2008-12-30 Thread Jeremy Huddleston
Is this the right way to setup auto-repeating? I didn't see an XkbSetRepeatRate or something similar... so is this what I should be doing, or should I be calling something? (note that this hunk is immediately after my call to XkbInitKeyboardDeviceStruct(pDev, ...): diff --git

[PATCH] Call xf86CrtcConfigInit() from within VIAPreInit()

2008-12-30 Thread frankdelange
From: Frank de Lange freedeskto...@unternet.org I don't have a VIA-equipped machine so I can not test this patch but given that VIA and Savage are 'quite similar' this should work to fix the segfault on start caused by use of an unallocated xf86CrtcConfig as well... If someone with access to a

Re: [PATCH] Call xf86CrtcConfigInit() from within VIAPreInit()

2008-12-30 Thread Timo Aaltonen
On Tue, 30 Dec 2008, frankdelange wrote: From: Frank de Lange freedeskto...@unternet.org I don't have a VIA-equipped machine so I can not test this patch but given that VIA and Savage are 'quite similar' this should work to fix the segfault on start caused by use of an unallocated

Re: [PATCH] Call xf86CrtcConfigInit() from within VIAPreInit()

2008-12-30 Thread Alex Deucher
On Tue, Dec 30, 2008 at 5:08 PM, frankdelange fr...@ostrogoth.unternet.org wrote: From: Frank de Lange freedeskto...@unternet.org I don't have a VIA-equipped machine so I can not test this patch but given that VIA and Savage are 'quite similar' this should work to fix the segfault on start

(trivia) XCB kitten logo?

2008-12-30 Thread David Gerard
A completely trivial question: what's the origin of the XCB logo, the kitten with the big feet? - d. ___ xorg mailing list xorg@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/xorg

Re: [radeonhd] Initial Radeon R6xx/R7xx acceleration support pushed

2008-12-30 Thread Alex Deucher
On Tue, Dec 30, 2008 at 8:39 PM, Nigel Rantor wig...@wiggly.org wrote: Alex Deucher wrote: It's finally here! r6xx-r7xx-support branches of the drm and xf86-video-radeonhd. http://cgit.freedesktop.org/mesa/drm/log/?h=r6xx-r7xx-support

Re: (trivia) XCB kitten logo?

2008-12-30 Thread William Tracy
Not that I have any background on the subject, but clicking on the logo pulled up this page: http://xcb.freedesktop.org/KittyLogo/ Apparently someone with a webcomic donated their character as a mascot. -- William Tracy afishion...@gmail.com -- wtr...@calpoly.edu Vice President, Cal Poly Linux

Re: bump: Xorg segfaults on XOpenDisplay multi thread

2008-12-30 Thread Matan Drori
hi bill i went to that direction, i linked to libpthread didn't do any good i tried working with ptmalloc3 instead of the ptmalloc2 thats in glibc, and it didn't do any good so i went back one layer up to the Xorg I did that since i couldn't re produce bug by linking malloc debuggers to my

RE: gma950 + latest x11 + latest intel driver

2008-12-30 Thread Jin, Gordon
Vasily Khoruzhick wrote on Monday, December 29, 2008 11:52 PM: On 29 December 2008 15:53:27 Jin, Gordon wrote: Vasily Khoruzhick wrote on Monday, December 29, 2008 12:32 AM: Hi, I'm testing latest x11 from git (gentoo's x11 overlay) and latest intel driver from git (videocard: gma950). Here's

Re: evdev keyboard problem in xorg 1.5.2 and evdev 2.0.99+

2008-12-30 Thread Timo Aaltonen
On Tue, 30 Dec 2008, Scott Serr wrote: I'm using Ubuntu 8.10 / Intrepid. I'm working on a multiseat project, but this is not a multiseat issue. I disable HAL, to let X handle the input devices: Section ServerFlags Option AutoAddDevices false EndSection Then specify my keyboard: