xserver-multidpi/hw/kdrive/ephyr
Keith Packard 9838b7032e Introduce a consistent coding style
This is strictly the application of the script 'x-indent-all.sh'
from util/modular. Compared to the patch that Daniel posted in
January, I've added a few indent flags:

	-bap
	-psl
	-T PrivatePtr
	-T pmWait
	-T _XFUNCPROTOBEGIN
	-T _XFUNCPROTOEND
	-T _X_EXPORT

The typedefs were needed to make the output of sdksyms.sh match the
previous output, otherwise, the code is formatted badly enough that
sdksyms.sh generates incorrect output.

The generated code was compared with the previous version and found to
be essentially identical -- "assert" line numbers and BUILD_TIME were
the only differences found.

The comparison was done with this script:

dir1=$1
dir2=$2

for dir in $dir1 $dir2; do
	(cd $dir && find . -name '*.o' | while read file; do
		dir=`dirname $file`
		base=`basename $file .o`
		dump=$dir/$base.dump
		objdump -d $file > $dump
	done)
done

find $dir1 -name '*.dump' | while read dump; do
	otherdump=`echo $dump | sed "s;$dir1;$dir2;"`
	diff -u $dump $otherdump
done

Signed-off-by: Keith Packard <keithp@keithp.com>
Acked-by: Daniel Stone <daniel@fooishbar.org>
Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-03-21 13:54:42 -07:00
..
man Man page syntax and spelling fixes. 2011-10-06 09:53:23 -07:00
.gitignore Xephyr: build Xephyr man pages using XORG_MANPAGE_SECTIONS 2011-01-18 15:10:29 -08:00
ephyr_draw.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyr.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyr.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrdri.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrdri.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrdriext.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrdriext.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrglxext.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrglxext.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrhostglx.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrhostglx.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrhostproxy.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrhostproxy.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrhostvideo.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrhostvideo.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrinit.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrlog.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrproxyext.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrproxyext.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
ephyrvideo.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
hostx.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
hostx.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
Makefile.am Xephyr: build Xephyr man pages using XORG_MANPAGE_SECTIONS 2011-01-18 15:10:29 -08:00
os.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
README Xephyr grab fix 2004-11-11 14:55:30 +00:00
XF86dri.c Introduce a consistent coding style 2012-03-21 13:54:42 -07:00
xf86dri.h Introduce a consistent coding style 2012-03-21 13:54:42 -07:00

Xephyr README
=============


What Is It ?
============

Xephyr is a a kdrive server that outputs to a window on a pre-existing
'host' X display. Think Xnest but with support for modern extensions
like composite, damage and randr. 

Unlike Xnest which is an X proxy, i.e.  limited to the
capabilities of the host X server, Xephyr is a real X server which
uses the host X server window as "framebuffer" via fast SHM XImages.

It also has support for 'visually' debugging what the server is
painting.


How To Use 
==========

You probably want to run like;

Xephyr :1 -ac -screen 800x600 &

Then set DISPLAY=:1 and run whatever X apps you like.

Use 'xrandr' to change to orientation/size. 

There is a '-parent' switch which works just like Xnests ( for use
with things like matchbox-nest - http://matchbox.handhelds.org ).

There is also a '-host-cursor' switch to set 'cursor acceleration' -
The host's cursor is reused. This is only really there to aid
debugging by avoiding server paints for the cursor. Performance
improvement is negiable. 

Send a SIGUSR1 to the server ( eg kill -USR1 `pidof Xephyr` ) to
toggle the debugging mode. In this mode red rectangles are painted to
screen areas getting painted before painting the actual content. The
delay between this can be altered by setting a XEPHYR_PAUSE env var to
a value in micro seconds.


Caveats
=======

 - Depth is limited to being the same as the host. 
   *Update* As of 8/11/2004. Xephyr can now do 8bpp & 16bpp 
            on 24bpp host.

 - Rotated displays are currently updated via full blits. This
   is slower than a normal oprientated display. Debug mode will
   therefor not be of much use rotated.  

 - The '-host-cursor' cursor is static in its appearence. 

 - The build gets a warning about 'nanosleep'. I think the various '-D'
   build flags are causing this. I havn't figured as yet how to work
   round it. It doesn't appear to break anything however. 

 - Keyboard handling is basic but works. 

 - Mouse button 5 probably wont work. 





Matthew Allum <mallum@o-hand.com> 2004