Changelog: - remove from docs / config tool useless / obsoleted options -- Lionel Ulmer - http://www.bbrox.org/
Index: documentation/configuring.sgml =================================================================== RCS file: /home/wine/wine/documentation/configuring.sgml,v retrieving revision 1.32 diff -u -r1.32 configuring.sgml --- documentation/configuring.sgml 21 Jul 2003 22:42:50 -0000 1.32 +++ documentation/configuring.sgml 14 Aug 2003 18:28:46 -0000 @@ -2699,21 +2699,6 @@ </listitem> </varlistentry> <varlistentry> - <term>UseXShm</term> - <listitem> - <para> - If you don't want DirectX to use DGA, you can at least - use X Shared Memory extensions (XShm). It is much - slower than DGA, since the app doesn't have direct - access to the physical frame buffer, but using shared - memory to draw the frame is at least faster than - sending the data through the standard X11 socket, even - though Wine's XShm support is still known to crash - sometimes. - </para> - </listitem> - </varlistentry> - <varlistentry> <term>DesktopDoubleBuffered</term> <listitem> <para> Index: documentation/installation-und-konfiguration.german =================================================================== RCS file: /home/wine/wine/documentation/installation-und-konfiguration.german,v retrieving revision 1.8 diff -u -r1.8 installation-und-konfiguration.german --- documentation/installation-und-konfiguration.german 1 Apr 2003 03:26:13 -0000 1.8 +++ documentation/installation-und-konfiguration.german 14 Aug 2003 18:28:48 -0000 @@ -1033,11 +1033,6 @@ unterstützt, ist es oft erforderlich, den X-Server in der benötigten Farbtiefe zu starten, bevor WINE gestartet wird. - UseXShm - Hierbei handelt es sich um eine andere Erweiterung des X - Window Systems, die schnellere Graphikoperationen - ermöglicht. Beispiel: "UseXShm" = "true". - DXGrab Diese Option bewirkt, dass der Mauszeiger - bei der Verwendung von DirectDraw (DirectX) - das von DirectDraw Index: documentation/samples/config =================================================================== RCS file: /home/wine/wine/documentation/samples/config,v retrieving revision 1.47 diff -u -r1.47 config --- documentation/samples/config 24 Jul 2003 00:05:04 -0000 1.47 +++ documentation/samples/config 14 Aug 2003 18:28:48 -0000 @@ -124,8 +124,6 @@ ; Use XFree86 DGA extension if present ; (make sure /dev/mem is accessible by you !) "UseDGA" = "Y" -; Use XShm extension if present -"UseXShm" = "Y" ; Use XVidMode extension if present "UseXVidMode" = "Y" ; Use the take focus protocol @@ -135,9 +133,6 @@ ; Create the desktop window with a double-buffered visual ; (useful to play OpenGL games) "DesktopDoubleBuffered" = "N" -; Use this if you have more than one port for video on your setup -; (Wine uses for now the first 'input image' it finds). -;; "XVideoPort" = "43" ; Run in synchronous mode (useful for debugging X11 problems) ;;"Synchronous" = "Y" ; Index: programs/winecfg/properties.h =================================================================== RCS file: /home/wine/wine/programs/winecfg/properties.h,v retrieving revision 1.2 diff -u -r1.2 properties.h --- programs/winecfg/properties.h 9 Jul 2003 04:22:57 -0000 1.2 +++ programs/winecfg/properties.h 14 Aug 2003 18:28:48 -0000 @@ -63,12 +63,10 @@ int nDesktopSizeX; int nDesktopSizeY; int nDGA; - int nXShm; int nXVidMode; int nTakeFocus; int nDXGrab; int nDoubleBuffered; - int nXVideoPort; int nSynchronous; } X11DRV_DESC; Index: programs/winecfg/winecfg.c =================================================================== RCS file: /home/wine/wine/programs/winecfg/winecfg.c,v retrieving revision 1.3 diff -u -r1.3 winecfg.c --- programs/winecfg/winecfg.c 9 Jul 2003 04:22:57 -0000 1.3 +++ programs/winecfg/winecfg.c 14 Aug 2003 18:28:49 -0000 @@ -209,12 +209,10 @@ pCfg->sX11Drv.nDesktopSizeX = 640; pCfg->sX11Drv.nDesktopSizeY = 480; pCfg->sX11Drv.nDGA = 1; - pCfg->sX11Drv.nXShm = 1; pCfg->sX11Drv.nXVidMode = 1; pCfg->sX11Drv.nTakeFocus = 1; pCfg->sX11Drv.nDXGrab = 0; pCfg->sX11Drv.nDoubleBuffered = 0; - pCfg->sX11Drv.nXVideoPort = 43; pCfg->sX11Drv.nSynchronous = 1; RegCloseKey( hSession );