Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
11875bf4
Commit
11875bf4
authored
Nov 05, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Use the default anti-aliasing parameters from gdi32.
parent
5c02c352
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
10 deletions
+0
-10
x11drv.h
dlls/winex11.drv/x11drv.h
+0
-2
x11drv_main.c
dlls/winex11.drv/x11drv_main.c
+0
-8
xrender.c
dlls/winex11.drv/xrender.c
+0
-0
No files found.
dlls/winex11.drv/x11drv.h
View file @
11875bf4
...
...
@@ -217,8 +217,6 @@ extern const int X11DRV_XROPfunction[];
extern
int
client_side_graphics
DECLSPEC_HIDDEN
;
extern
int
client_side_with_render
DECLSPEC_HIDDEN
;
extern
int
client_side_antialias_with_core
DECLSPEC_HIDDEN
;
extern
int
client_side_antialias_with_render
DECLSPEC_HIDDEN
;
extern
const
struct
gdi_dc_funcs
*
X11DRV_XRender_Init
(
void
)
DECLSPEC_HIDDEN
;
extern
struct
opengl_funcs
*
get_glx_driver
(
UINT
)
DECLSPEC_HIDDEN
;
...
...
dlls/winex11.drv/x11drv_main.c
View file @
11875bf4
...
...
@@ -81,8 +81,6 @@ int private_color_map = 0;
int
primary_monitor
=
0
;
int
client_side_graphics
=
1
;
int
client_side_with_render
=
1
;
int
client_side_antialias_with_core
=
1
;
int
client_side_antialias_with_render
=
1
;
int
copy_default_colors
=
128
;
int
alloc_system_colors
=
256
;
DWORD
thread_data_tls_index
=
TLS_OUT_OF_INDEXES
;
...
...
@@ -396,12 +394,6 @@ static void setup_options(void)
if
(
!
get_config_key
(
hkey
,
appkey
,
"ClientSideWithRender"
,
buffer
,
sizeof
(
buffer
)
))
client_side_with_render
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
if
(
!
get_config_key
(
hkey
,
appkey
,
"ClientSideAntiAliasWithCore"
,
buffer
,
sizeof
(
buffer
)
))
client_side_antialias_with_core
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
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
,
"UseXIM"
,
buffer
,
sizeof
(
buffer
)
))
use_xim
=
IS_OPTION_TRUE
(
buffer
[
0
]
);
...
...
dlls/winex11.drv/xrender.c
View file @
11875bf4
This diff is collapsed.
Click to expand it.
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