Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9a7fdc2f
Commit
9a7fdc2f
authored
Aug 15, 2003
by
Lionel Ulmer
Committed by
Alexandre Julliard
Aug 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove from docs / config tool useless / obsoleted options.
parent
beb4ac8f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
29 deletions
+0
-29
configuring.sgml
documentation/configuring.sgml
+0
-15
installation-und-konfiguration.german
documentation/installation-und-konfiguration.german
+0
-5
config
documentation/samples/config
+0
-5
properties.h
programs/winecfg/properties.h
+0
-2
winecfg.c
programs/winecfg/winecfg.c
+0
-2
No files found.
documentation/configuring.sgml
View file @
9a7fdc2f
...
...
@@ -2699,21 +2699,6 @@ with the <literal>GraphicsDriver</literal> option in the
</
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
>
...
...
documentation/installation-und-konfiguration.german
View file @
9a7fdc2f
...
...
@@ -1033,11 +1033,6 @@ die folgenden Programme und Dateien installiert sein:
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
...
...
documentation/samples/config
View file @
9a7fdc2f
...
...
@@ -124,8 +124,6 @@ WINE REGISTRY Version 2
; 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 @@ WINE REGISTRY Version 2
; 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"
;
...
...
programs/winecfg/properties.h
View file @
9a7fdc2f
...
...
@@ -63,12 +63,10 @@ typedef struct
int
nDesktopSizeX
;
int
nDesktopSizeY
;
int
nDGA
;
int
nXShm
;
int
nXVidMode
;
int
nTakeFocus
;
int
nDXGrab
;
int
nDoubleBuffered
;
int
nXVideoPort
;
int
nSynchronous
;
}
X11DRV_DESC
;
...
...
programs/winecfg/winecfg.c
View file @
9a7fdc2f
...
...
@@ -209,12 +209,10 @@ int loadConfig (WINECFG_DESC* pCfg)
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment