public inbox for cygwin-xfree@sourceware.org
help / color / mirror / Atom feed
* [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST)
@ 2010-09-30 15:33 Jon TURNEY
2010-09-30 19:03 ` michel hummel
2010-10-02 20:37 ` R: " Marco Atzeri
0 siblings, 2 replies; 8+ messages in thread
From: Jon TURNEY @ 2010-09-30 15:33 UTC (permalink / raw)
To: cygwin-xfree
The following packages have been updated in the Cygwin distribution:
*** xorg-server-1.9.0-1
*** xorg-server-dmx-1.9.0-1
This package contains XWin and the other X.Org X11 servers.
This is the first official release of the xserver 1.9 series. It is currently
available as a test release, and will be made stable in approximately one week
if no major regressions are reported.
In addition to the usual upstream fixes and improvements, this contains the
following cygwin-specific changes:
* fix a drawing crash, which could occur after moving a window in multiwindow
mode, caused by incorrect initialization of composite position data
* fix a clipboard-related crash which could occur during XDMCP session startup
(thanks to Michel Hummel for the patch)
* added Turkish keyboard layout detection
* add -displayfd option (experimental), which may be useful in Terminal Server
environments, see [1] for a discussion of how and why you might want to use this
* various crash fixes for -resize. Also fix -resize from turning itself on in
multiwindow mode even when not asked for. -resize will be enabled by default
in multiwindow mode after more testing.
* enable WGL AIGLX code and -wgl option which has been merged upstream, and
various GLX fixes
Server-side Hardware Accelerated OpenGL (AIGLX)
===============================================
This release adds experimental support for hardware accelerated OpenGL
rendering in the X server using the native WGL interface.
* You need to provide the command line option '-wgl' to the X server to turn
on the use of native Windows OpenGL to implement GLX. If you don't use this
option, the server will carry on using software rendering.
* The currently shipped cygwin mesa libGL is built in such a way that it does
not support indirect rendering (rendering takes place on the server), only
client-side rendering. ONLY REMOTE CLIENTS FROM UNIX SYSTEMS WILL WORK
CURRENTLY. An updated libGL will be made available at some point in the future.
* mesa's libGL prefers to use client-side rendering and transfer the image to
the server using xlib. To force the use of GLX, so rendering is indirect
(takes place on the server), and thus can be accelerated, you must export the
environment variable LIBGL_ALWAYS_INDIRECT with a non-zero value before
starting the client application.
* If you have set things up successfully, 'glxinfo | grep OpenGL' should
return something mentioning your graphics card vendor. If it mentions Mesa,
you still have software rendering
* As before, only multiwindow/mwextwm modes are supported. Software rendering
is always used on screens which do not have 1 native window per X window.
Removing this restriction requires a way to tell the native OpenGL to
transform/clip to the portion of the native window occupied by the X window in
the single native window modes.
[1] http://cygwin.com/ml/cygwin-xfree/2010-09/msg00040.html
--
Jon TURNEY
Volunteer Cygwin/X X Server maintainer
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST)
2010-09-30 15:33 [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST) Jon TURNEY
@ 2010-09-30 19:03 ` michel hummel
2010-10-06 14:11 ` Jon TURNEY
2010-10-02 20:37 ` R: " Marco Atzeri
1 sibling, 1 reply; 8+ messages in thread
From: michel hummel @ 2010-09-30 19:03 UTC (permalink / raw)
To: cygwin-xfree
Hi jon,
I was surprised to see in the Changelog of this test release :
"* fix a clipboard-related crash which could occur during XDMCP session
startup (thanks to Michel Hummel for the patch) "
It would be very cool if this version included my patch about xdmcp and
clipboard auto-restart but I don't think so, isn't it ?
I think this version only includes the patch about : clipboard crash on
server reset isn't it ?
Thanks for your work,
Michel Hummel
Le 30/09/2010 17:26, Jon TURNEY a écrit :
> The following packages have been updated in the Cygwin distribution:
>
> *** xorg-server-1.9.0-1
> *** xorg-server-dmx-1.9.0-1
>
> This package contains XWin and the other X.Org X11 servers.
>
> This is the first official release of the xserver 1.9 series. It is
> currently available as a test release, and will be made stable in
> approximately one week if no major regressions are reported.
>
> In addition to the usual upstream fixes and improvements, this
> contains the following cygwin-specific changes:
>
> * fix a drawing crash, which could occur after moving a window in
> multiwindow mode, caused by incorrect initialization of composite
> position data
> * fix a clipboard-related crash which could occur during XDMCP session
> startup (thanks to Michel Hummel for the patch)
> * added Turkish keyboard layout detection
> * add -displayfd option (experimental), which may be useful in
> Terminal Server environments, see [1] for a discussion of how and why
> you might want to use this
> * various crash fixes for -resize. Also fix -resize from turning
> itself on in multiwindow mode even when not asked for. -resize will
> be enabled by default in multiwindow mode after more testing.
> * enable WGL AIGLX code and -wgl option which has been merged
> upstream, and various GLX fixes
>
> Server-side Hardware Accelerated OpenGL (AIGLX)
> ===============================================
>
> This release adds experimental support for hardware accelerated OpenGL
> rendering in the X server using the native WGL interface.
>
> * You need to provide the command line option '-wgl' to the X server
> to turn on the use of native Windows OpenGL to implement GLX. If you
> don't use this option, the server will carry on using software rendering.
>
> * The currently shipped cygwin mesa libGL is built in such a way that
> it does not support indirect rendering (rendering takes place on the
> server), only client-side rendering. ONLY REMOTE CLIENTS FROM UNIX
> SYSTEMS WILL WORK CURRENTLY. An updated libGL will be made available
> at some point in the future.
>
> * mesa's libGL prefers to use client-side rendering and transfer the
> image to the server using xlib. To force the use of GLX, so rendering
> is indirect (takes place on the server), and thus can be accelerated,
> you must export the environment variable LIBGL_ALWAYS_INDIRECT with a
> non-zero value before starting the client application.
>
> * If you have set things up successfully, 'glxinfo | grep OpenGL'
> should return something mentioning your graphics card vendor. If it
> mentions Mesa, you still have software rendering
>
> * As before, only multiwindow/mwextwm modes are supported. Software
> rendering is always used on screens which do not have 1 native window
> per X window. Removing this restriction requires a way to tell the
> native OpenGL to transform/clip to the portion of the native window
> occupied by the X window in the single native window modes.
>
> [1] http://cygwin.com/ml/cygwin-xfree/2010-09/msg00040.html
>
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 8+ messages in thread
* R: [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST)
2010-09-30 15:33 [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST) Jon TURNEY
2010-09-30 19:03 ` michel hummel
@ 2010-10-02 20:37 ` Marco Atzeri
2010-10-02 20:54 ` Christopher Faylor
1 sibling, 1 reply; 8+ messages in thread
From: Marco Atzeri @ 2010-10-02 20:37 UTC (permalink / raw)
To: cygwin-xfree
--- Gio 30/9/10, Jon TURNEY ha scritto:
> The following packages have been
> updated in the Cygwin distribution:
>
> *** xorg-server-1.9.0-1
> *** xorg-server-dmx-1.9.0-1
>
> This package contains XWin and the other X.Org X11
> servers.
>
> -- Jon TURNEY
> Volunteer Cygwin/X X Server maintainer
>
Hi Jon,
testing the 1.9.0-1 server with recent cygwin snapshots
20100924 to 20101001 (not checked the ones before)
I am unable to run xterm as bash crashes.
Menu command:
C:\cygwin2\bin\run.exe -p /usr/bin xterm -fn 8x13 -fg white -bg black -display 127.0.0.1:0.0 -ls /bin/bash
bash.exe.stackdump
Exception: STATUS_ACCESS_VIOLATION at eip=610C8835
eax=00000000 ebx=0000001C ecx=7C801898 edx=7C90E514 esi=61165220 edi=00000000
ebp=186CCD58 esp=186CCC80 program=C:\cygwin2\bin\bash.exe, pid 10864, thread sig
cs=001B ds=0023 es=0023 fs=003B gs=0000 ss=0023
Stack trace:
Frame Function Args
186CCD58 610C8835 (61165220, 00000000, 00000000, 00000000)
186CCD88 61003DF1 (00000000, 00000000, 00000000, 61004772)
End of stack trace
no such problem with the
$ XWin.exe --version
Release: 1.8.2.0 (10802000)
Build Date: 2010-08-06
Marco
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: R: [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST)
2010-10-02 20:37 ` R: " Marco Atzeri
@ 2010-10-02 20:54 ` Christopher Faylor
2010-10-02 21:16 ` Christopher Faylor
0 siblings, 1 reply; 8+ messages in thread
From: Christopher Faylor @ 2010-10-02 20:54 UTC (permalink / raw)
To: cygwin-xfree
On Sat, Oct 02, 2010 at 08:36:51PM +0000, Marco Atzeri wrote:
>--- Gio 30/9/10, Jon TURNEY ha scritto:
>
>> The following packages have been
>> updated in the Cygwin distribution:
>>
>> *** xorg-server-1.9.0-1
>> *** xorg-server-dmx-1.9.0-1
>>
>> This package contains XWin and the other X.Org X11
>> servers.
>
>>
>> -- Jon TURNEY
>> Volunteer Cygwin/X X Server maintainer
>>
>
>Hi Jon,
>testing the 1.9.0-1 server with recent cygwin snapshots
>20100924 to 20101001 (not checked the ones before)
>
>I am unable to run xterm as bash crashes.
>
>Menu command:
>C:\cygwin2\bin\run.exe -p /usr/bin xterm -fn 8x13 -fg white -bg black -display 127.0.0.1:0.0 -ls /bin/bash
>
>
>bash.exe.stackdump
>
>Exception: STATUS_ACCESS_VIOLATION at eip=610C8835
>eax=00000000 ebx=0000001C ecx=7C801898 edx=7C90E514 esi=61165220 edi=00000000
>ebp=186CCD58 esp=186CCC80 program=C:\cygwin2\bin\bash.exe, pid 10864, thread sig
>cs=001B ds=0023 es=0023 fs=003B gs=0000 ss=0023
>Stack trace:
>Frame Function Args
>186CCD58 610C8835 (61165220, 00000000, 00000000, 00000000)
>186CCD88 61003DF1 (00000000, 00000000, 00000000, 61004772)
>End of stack trace
>
>no such problem with the
>
>$ XWin.exe --version
>Release: 1.8.2.0 (10802000)
>Build Date: 2010-08-06
Which snapshot does the above stack trace come from?
cgf
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: R: [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST)
2010-10-02 20:54 ` Christopher Faylor
@ 2010-10-02 21:16 ` Christopher Faylor
2010-10-02 21:22 ` Marco Atzeri
0 siblings, 1 reply; 8+ messages in thread
From: Christopher Faylor @ 2010-10-02 21:16 UTC (permalink / raw)
To: cygwin-xfree
On Sat, Oct 02, 2010 at 04:54:25PM -0400, Christopher Faylor wrote:
>On Sat, Oct 02, 2010 at 08:36:51PM +0000, Marco Atzeri wrote:
>>testing the 1.9.0-1 server with recent cygwin snapshots
>>20100924 to 20101001 (not checked the ones before)
>
>Which snapshot does the above stack trace come from?
Actually, try today's snapshot when it shows up (it's building now). It
may fix the problem. I just found a cygwin startup problem today while
trying to track down the git problem. I think this may be what you're
seeing.
cgf
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: R: [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST)
2010-10-02 21:16 ` Christopher Faylor
@ 2010-10-02 21:22 ` Marco Atzeri
2010-10-02 21:42 ` Marco Atzeri
0 siblings, 1 reply; 8+ messages in thread
From: Marco Atzeri @ 2010-10-02 21:22 UTC (permalink / raw)
To: cygwin-xfree
--- Sab 2/10/10, Christopher Faylor ha scritto:
> On Sat, Oct 02, 2010 at 04:54:25PM
> -0400, Christopher Faylor wrote:
> >On Sat, Oct 02, 2010 at 08:36:51PM +0000, Marco Atzeri
> wrote:
> >>testing the 1.9.0-1 server with recent cygwin
> snapshots
> >>20100924 to 20101001 (not checked the ones before)
>
> >
> >Which snapshot does the above stack trace come from?
20101001 (if I have not messed the things)
>
> Actually, try today's snapshot when it shows up (it's
> building now). It
> may fix the problem. I just found a cygwin startup
> problem today while
> trying to track down the git problem. I think this
> may be what you're
> seeing.
>
> cgf
>
I will test.
Regards
Marco
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: R: [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST)
2010-10-02 21:22 ` Marco Atzeri
@ 2010-10-02 21:42 ` Marco Atzeri
0 siblings, 0 replies; 8+ messages in thread
From: Marco Atzeri @ 2010-10-02 21:42 UTC (permalink / raw)
To: cygwin-xfree
--- Sab 2/10/10, Marco Atzeri ha scritto:
> --- Sab 2/10/10, Christopher
> Faylor ha scritto:
>
> > On Sat, Oct 02, 2010 at 04:54:25PM
> > -0400, Christopher Faylor wrote:
> > >On Sat, Oct 02, 2010 at 08:36:51PM +0000, Marco
> Atzeri
> > wrote:
> > >>testing the 1.9.0-1 server with recent cygwin
> > snapshots
> > >>20100924 to 20101001 (not checked the ones
> before)
> >
> > >
> > >Which snapshot does the above stack trace come
> from?
>
> 20101001 (if I have not messed the things)
>
> >
> > Actually, try today's snapshot when it shows up (it's
> > building now). It
> > may fix the problem. I just found a cygwin startup
> > problem today while
> > trying to track down the git problem. I think this
> > may be what you're
> > seeing.
> >
> > cgf
> >
>
>
> I will test.
>
> Regards
> Marco
>
problem solved on
$ uname -a
CYGWIN_NT-5.1 ITQMOZCAS2NB007 1.7.8s(0.231/5/3) 20101002 17:15:53 i686 Cygwin
$ XWin.exe --version
Release: 1.9.0.0 (10900000)
Thanks
Marco
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ: http://x.cygwin.com/docs/faq/
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-10-06 14:11 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-30 15:33 [ANNOUNCEMENT] Updated: xorg-server-1.9.0-1 (TEST) Jon TURNEY
2010-09-30 19:03 ` michel hummel
2010-10-06 14:11 ` Jon TURNEY
2010-10-02 20:37 ` R: " Marco Atzeri
2010-10-02 20:54 ` Christopher Faylor
2010-10-02 21:16 ` Christopher Faylor
2010-10-02 21:22 ` Marco Atzeri
2010-10-02 21:42 ` Marco Atzeri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).