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
1b3fec96
Commit
1b3fec96
authored
Jan 01, 2007
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Jan 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Remove desktop double buffering option.
parent
a736ac3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
x11drv_main.c
dlls/winex11.drv/x11drv_main.c
+1
-6
No files found.
dlls/winex11.drv/x11drv_main.c
View file @
1b3fec96
...
...
@@ -89,8 +89,6 @@ int alloc_system_colors = 256;
DWORD
thread_data_tls_index
=
TLS_OUT_OF_INDEXES
;
int
xrender_error_base
=
0
;
static
BOOL
desktop_dbl_buf
=
TRUE
;
static
x11drv_error_callback
err_callback
;
/* current callback for error */
static
Display
*
err_callback_display
;
/* display callback is set for */
static
void
*
err_callback_arg
;
/* error callback argument */
...
...
@@ -351,9 +349,6 @@ static void setup_options(void)
if
(
!
get_config_key
(
hkey
,
appkey
,
"ClientSideAntiAliasWithRender"
,
buffer
,
sizeof
(
buffer
)
))
client_side_antialias_with_render
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
if
(
!
get_config_key
(
hkey
,
appkey
,
"DesktopDoubleBuffered"
,
buffer
,
sizeof
(
buffer
)
))
desktop_dbl_buf
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
if
(
!
get_config_key
(
hkey
,
appkey
,
"UseXIM"
,
buffer
,
sizeof
(
buffer
)
))
use_xim
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
...
...
@@ -419,7 +414,7 @@ static BOOL process_attach(void)
if
(
!
screen_depth
)
screen_depth
=
DefaultDepthOfScreen
(
screen
);
/* If OpenGL is available, change the default visual, etc as necessary */
if
(
desktop_dbl_buf
&&
(
desktop_vi
=
X11DRV_setup_opengl_visual
(
display
)))
if
((
desktop_vi
=
X11DRV_setup_opengl_visual
(
display
)))
{
visual
=
desktop_vi
->
visual
;
screen
=
ScreenOfDisplay
(
display
,
desktop_vi
->
screen
);
...
...
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