<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nx-libs/nx-X11/programs/Xserver/fb/fbpush.c, branch pr/extend_manpage</title>
<subtitle>NXv3 (redistributed) 
</subtitle>
<id>https://openid.arctica-project.org/nx-libs/atom?h=pr%2Fextend_manpage</id>
<link rel='self' href='https://openid.arctica-project.org/nx-libs/atom?h=pr%2Fextend_manpage'/>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/'/>
<updated>2016-07-05T23:09:15+00:00</updated>
<entry>
<title>VCS info lines: Remove ancient X.org / XFree86 VCS info line from code files.</title>
<updated>2016-07-05T23:09:15+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-07-05T14:32:57+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=6144b615dd7ae2acd786aaa08f66c9743870b709'/>
<id>urn:sha1:6144b615dd7ae2acd786aaa08f66c9743870b709</id>
<content type='text'>
 This has already been started while replacing copyright info in file
 headers and has now been completed with this commit.
</content>
</entry>
<entry>
<title>fb: Mark some variables as unused.</title>
<updated>2016-07-05T06:11:41+00:00</updated>
<author>
<name>Cyril Brulebois</name>
<email>kibi@debian.org</email>
</author>
<published>2016-06-29T10:37:22+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=3a54da8bcaa9aa1935fb4bff183560d1bc330323'/>
<id>urn:sha1:3a54da8bcaa9aa1935fb4bff183560d1bc330323</id>
<content type='text'>
 There's no use for the values set through the various macro calls
 (fbGetDrawable and fbGetDrawablePixmap), so mark those variables as unused.

 The following warnings go away accordingly:
 |   CC     libfb_la-fb24_32.lo
 | fb24_32.c: In function 'fb24_32ReformatTile':
 | fb24_32.c:544:19: warning: variable 'newYoff' set but not used [-Wunused-but-set-variable]
 | fb24_32.c:544:10: warning: variable 'newXoff' set but not used [-Wunused-but-set-variable]
 | fb24_32.c:543:19: warning: variable 'oldYoff' set but not used [-Wunused-but-set-variable]
 | fb24_32.c:543:10: warning: variable 'oldXoff' set but not used [-Wunused-but-set-variable]
 |   CC     libfb_la-fbfill.lo
 | fbfill.c: In function 'fbFill':
 | fbfill.c:72:21: warning: variable 'stipYoff' set but not used [-Wunused-but-set-variable]
 | fbfill.c:72:11: warning: variable 'stipXoff' set but not used [-Wunused-but-set-variable]
 | fbfill.c:100:21: warning: variable 'stipYoff' set but not used [-Wunused-but-set-variable]
 | fbfill.c:100:11: warning: variable 'stipXoff' set but not used [-Wunused-but-set-variable]
 | fbfill.c:142:20: warning: variable 'tileYoff' set but not used [-Wunused-but-set-variable]
 | fbfill.c:142:10: warning: variable 'tileXoff' set but not used [-Wunused-but-set-variable]
 |   CC     libfb_la-fbgc.lo
 | fbgc.c: In function 'fbPadPixmap':
 | fbgc.c:92:19: warning: variable 'yOff' set but not used [-Wunused-but-set-variable]
 | fbgc.c:92:13: warning: variable 'xOff' set but not used [-Wunused-but-set-variable]
 | fbgc.c: In function 'fbCanEvenStipple':
 | fbgc.c:166:23: warning: variable 'stipYoff' set but not used [-Wunused-but-set-variable]
 | fbgc.c:166:13: warning: variable 'stipXoff' set but not used [-Wunused-but-set-variable]
 |   CC     libfb_la-fbpush.lo
 | fbpush.c: In function 'fbPushPixels':
 | fbpush.c:238:20: warning: variable 'stipYoff' set but not used [-Wunused-but-set-variable]
 | fbpush.c:238:10: warning: variable 'stipXoff' set but not used [-Wunused-but-set-variable]

 Reviewed-by: Jeremy Huddleston &lt;jeremyhu@apple.com&gt;
 Signed-off-by: Cyril Brulebois &lt;kibi@debian.org&gt;
 Backport to nx-libs: Mike Gabriel &lt;mike.gabriel@das-netzwerkteam.de&gt;
</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>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>
