<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nx-libs/nx-X11/programs/Xserver/composite/compext.c, branch 3.6.x</title>
<subtitle>NXv3 (redistributed) 
</subtitle>
<id>https://openid.arctica-project.org/nx-libs/atom?h=3.6.x</id>
<link rel='self' href='https://openid.arctica-project.org/nx-libs/atom?h=3.6.x'/>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/'/>
<updated>2021-06-08T06:23:35+00:00</updated>
<entry>
<title>nxagent: add command line switch to enable composite</title>
<updated>2021-06-08T06:23:35+00:00</updated>
<author>
<name>Ulrich Sibiller</name>
<email>uli42@gmx.de</email>
</author>
<published>2021-03-29T21:07:18+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=555cbcb325887b3e19bf7ffc3890f60485681e54'/>
<id>urn:sha1:555cbcb325887b3e19bf7ffc3890f60485681e54</id>
<content type='text'>
We have it disabled by default but there hasn't been a way to enable it.
</content>
</entry>
<entry>
<title>Remove unneccesary casts from WriteToClient calls</title>
<updated>2016-07-05T11:32:05+00:00</updated>
<author>
<name>Alan Coopersmith</name>
<email>alan.coopersmith@oracle.com</email>
</author>
<published>2016-07-03T22:28:47+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=f6a1bda2dff0c70aa13f3cb763a9b08c4c037c53'/>
<id>urn:sha1:f6a1bda2dff0c70aa13f3cb763a9b08c4c037c53</id>
<content type='text'>
 Casting return to (void) was used to tell lint that you intended
 to ignore the return value, so it didn't warn you about it.

 Casting the third argument to (char *) was used as the most generic
 pointer type in the days before compilers supported C89 (void *)
 (except for a couple places it's used for byte-sized pointer math).

 Signed-off-by: Alan Coopersmith &lt;alan.coopersmith@oracle.com&gt;
 Reviewed-by: Keith Packard &lt;keithp@keithp.com&gt;
 Tested-by: Daniel Stone &lt;daniel@fooishbar.org&gt;
 Backport to nx-libs: Mike Gabriel &lt;mike.gabriel@das-netzwerkteam.de&gt;
</content>
</entry>
<entry>
<title>Use internal temp variable for swap macros. Make swaps/swapl type safe (introducing wrong_size check at build time).</title>
<updated>2016-07-04T14:36:59+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-06-28T23:36:31+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=286d83260216e8e53db701eed5c785aae1c716bf'/>
<id>urn:sha1:286d83260216e8e53db701eed5c785aae1c716bf</id>
<content type='text'>
 While working on this changeset, various spots got discovered where
 swapl or swaps was used on a wrong type, where byte swapping calls had
 been forgotten or done on the wrong variable.

 This backport at least includes changes from the following X.org
 commits, listed in non-chronological order:

 commit 2c7c520cfe0df30f4bc3adba59d9c62582823bf8
 Author: Matt Turner &lt;mattst88@gmail.com&gt;
 Date:   Thu Aug 4 15:35:41 2011 -0400

    Use internal temp variable for swap macros

    Also, fix whitespace, mainly around
        swaps(&amp;rep.sequenceNumber)

    Reviewed-by: Peter Harris &lt;pharris@opentext.com&gt;
    Signed-off-by: Matt Turner &lt;mattst88@gmail.com&gt;

 commit 9edcae78c46286baff42e74bfe26f6ae4d00fe01
 Author: Matt Turner &lt;mattst88@gmail.com&gt;
 Date:   Wed Sep 21 17:14:16 2011 -0400

    Use correct swap{l,s} (or none at all for CARD8)

    Swapping the wrong size was never caught because swap{l,s} are macros.

    It's clear in the case of Xext/xres.c, that the author believed
    client_major/minor to be CARD16 from looking at the code in the first
    hunk.

    v2: dmx.c fixes from Keith.

    Reviewed-by: Peter Harris &lt;pharris@opentext.com&gt;
    Signed-off-by: Matt Turner &lt;mattst88@gmail.com&gt;

 commit dab064fa5e0b1f5c67222562ad5367005832cba1
 Author: Andrea Canciani &lt;ranma42@gmail.com&gt;
 Date:   Tue Nov 2 20:10:32 2010 +0100

    render: Fix byteswapping of gradient stops

    The function swapStops repeatedly swaps the color components as
    CARD16, but incorrectly steps over them as if they were CARD32.

    This causes half of the stops not to be swapped at all and some
    unrelated data be swapped instead.

    Signed-off-by: Andrea Canciani &lt;ranma42@gmail.com&gt;
    Reviewed-by: Soren Sandmann &lt;sandmann@daimi.au.dk&gt;
    Reviewed-by: Julien Cristau &lt;jcristau@debian.org&gt;
    Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;

 commit 54770c980cd2b91a8377f975a58ed69def5cfa42
 Author: Matt Turner &lt;mattst88@gmail.com&gt;
 Date:   Tue Aug 16 16:59:07 2011 -0400

    Cast char* buffers to swap functions

    Reviewed-by: Peter Harris &lt;pharris@opentext.com&gt;
    Signed-off-by: Matt Turner &lt;mattst88@gmail.com&gt;

 commit 6844bd2e63490870bab3c469eec6030354ef2865
 Author: Alan Coopersmith &lt;alan.coopersmith@sun.com&gt;
 Date:   Wed Jan 9 19:52:00 2008 -0800

    More Xv extension byte swapping fixes

 commit e46f6ddeccd082b2d507a1e8b57ea30e6b0a2c83
 Author: Michel Dänzer &lt;michel@tungstengraphics.com&gt;
 Date:   Wed Jan 16 14:24:22 2008 +0100

    Yet another Xv extension byte swapping fix.
</content>
</entry>
<entry>
<title>Xserver/include/protocol-versions.h: Switch to having an Xserver-specific header file containing all use protocol versions.</title>
<updated>2016-07-02T11:51:37+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-06-28T10:07:10+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=487870fff5cd1bc3db5ade4f5721f483f96119c7'/>
<id>urn:sha1:487870fff5cd1bc3db5ade4f5721f483f96119c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>misc nx-X11/{programs/Xserver/composite,include/extensions}: update to Composite 0.4 - with changes where neccessary and rough edges.</title>
<updated>2016-05-30T16:03:35+00:00</updated>
<author>
<name>Mihai Moldovan</name>
<email>ïonic@ionic.de</email>
</author>
<published>2016-04-09T19:40:24+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=be824bc8d78260d4c7ac64f298cb8b528564a4fb'/>
<id>urn:sha1:be824bc8d78260d4c7ac64f298cb8b528564a4fb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename region macros to eliminate screen argument</title>
<updated>2016-05-02T12:53:06+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-03-16T10:11:43+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=63f1fff8fe1e7f94ebc0a72df773c6f77531f7a4'/>
<id>urn:sha1:63f1fff8fe1e7f94ebc0a72df773c6f77531f7a4</id>
<content type='text'>
This is a huge mechanical patch and a few small fixups required to finish
the job. They were reviewed separately, but because the server does not
build without both pieces, I've merged them together at this time.

The mechanical changes were performed by running the included
'fix-region' script over the whole nx-X11/programs/Xserver tree:

$ cd nx-X11/programs/Xserver &amp;&amp; ( git ls-files | grep -v '^fix-' | xargs ./fix-region; )

And then, the white space errors in the resulting patch were fixed
using the provided fix-patch-whitespace script.

$ sh ./fix-patch-whitespace

Thanks to Jamey Sharp for the mighty fine sed-generating sed script.

v1: Keith Packard &lt;keithp@keithp.com&gt; (X.Org xserver commit: 2dc138922b7588515d5f2447e4b9dcdc0bef15e0)
v2: Mike Gabriel &lt;mike.gabriel@das-netzwerkteam.de&gt; (apply fix-region script to nx-libs)
</content>
</entry>
<entry>
<title>Replace 'pointer' type with 'void *'</title>
<updated>2015-12-28T11:54:40+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2015-06-22T07:36:08+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=68dd0b52e13c844d662192654fb10cb993257a59'/>
<id>urn:sha1:68dd0b52e13c844d662192654fb10cb993257a59</id>
<content type='text'>
 This lets us stop using the 'pointer' typedef in Xdefs.h as 'pointer'
 is used throughout the X server for other things, and having duplicate
 names generates compiler warnings.

 Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
 Reviewed-by: Eric Anholt &lt;eric@anholt.net&gt;
 Rebased against NX: Mike Gabriel &lt;mike.gabriel@das-netzwerkteam.de&gt;
</content>
</entry>
<entry>
<title>Imported nx-X11-3.1.0-1.tar.gz</title>
<updated>2011-10-10T15:43:39+00:00</updated>
<author>
<name>Reinhard Tartler</name>
<email>siretart@tauware.de</email>
</author>
<published>2011-10-10T15:43:39+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=f4092abdf94af6a99aff944d6264bc1284e8bdd4'/>
<id>urn:sha1:f4092abdf94af6a99aff944d6264bc1284e8bdd4</id>
<content type='text'>
Summary: Imported nx-X11-3.1.0-1.tar.gz
Keywords:

Imported nx-X11-3.1.0-1.tar.gz
into Git repository
</content>
</entry>
</feed>
