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
4edc46cb
Commit
4edc46cb
authored
May 24, 2007
by
Huw Davies
Committed by
Alexandre Julliard
May 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Merge some common code.
parent
8178f8fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
18 deletions
+10
-18
xrender.c
dlls/winex11.drv/xrender.c
+10
-18
No files found.
dlls/winex11.drv/xrender.c
View file @
4edc46cb
...
...
@@ -1301,24 +1301,17 @@ BOOL X11DRV_XRender_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flag
wine_tsx11_lock
();
XSetForeground
(
gdi_display
,
physDev
->
gc
,
textPixel
);
if
(
aa_type
==
AA_None
)
{
for
(
idx
=
0
;
idx
<
count
;
idx
++
)
{
SharpGlyphMono
(
physDev
,
physDev
->
dc_rect
.
left
+
x
+
xoff
,
physDev
->
dc_rect
.
top
+
y
+
yoff
,
formatEntry
->
bitmaps
[
wstr
[
idx
]],
&
formatEntry
->
gis
[
wstr
[
idx
]]);
if
(
lpDx
)
{
offset
+=
lpDx
[
idx
];
xoff
=
offset
*
cosEsc
;
yoff
=
offset
*
-
sinEsc
;
}
else
{
xoff
+=
formatEntry
->
gis
[
wstr
[
idx
]].
xOff
;
yoff
+=
formatEntry
->
gis
[
wstr
[
idx
]].
yOff
;
}
}
}
else
if
(
physDev
->
depth
==
1
)
{
if
(
aa_type
==
AA_None
||
physDev
->
depth
==
1
)
{
void
(
*
sharp_glyph_fn
)(
X11DRV_PDEVICE
*
,
INT
,
INT
,
void
*
,
XGlyphInfo
*
);
if
(
aa_type
==
AA_None
)
sharp_glyph_fn
=
SharpGlyphMono
;
else
sharp_glyph_fn
=
SharpGlyphGray
;
for
(
idx
=
0
;
idx
<
count
;
idx
++
)
{
SharpGlyphGray
(
physDev
,
physDev
->
dc_rect
.
left
+
x
+
xoff
,
sharp_glyph_fn
(
physDev
,
physDev
->
dc_rect
.
left
+
x
+
xoff
,
physDev
->
dc_rect
.
top
+
y
+
yoff
,
formatEntry
->
bitmaps
[
wstr
[
idx
]],
&
formatEntry
->
gis
[
wstr
[
idx
]]);
...
...
@@ -1330,7 +1323,6 @@ BOOL X11DRV_XRender_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flag
xoff
+=
formatEntry
->
gis
[
wstr
[
idx
]].
xOff
;
yoff
+=
formatEntry
->
gis
[
wstr
[
idx
]].
yOff
;
}
}
}
else
{
XImage
*
image
;
...
...
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