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
b01be941
Commit
b01be941
authored
Jul 28, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Fix handling of the lpDx array in ExtTextOut for the non-Xrender case.
parent
2773ae18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
18 deletions
+16
-18
text.c
dlls/winex11.drv/text.c
+16
-18
No files found.
dlls/winex11.drv/text.c
View file @
b01be941
...
@@ -62,14 +62,10 @@ X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
...
@@ -62,14 +62,10 @@ X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
if
(
pfo
->
lf
.
lfEscapement
&&
pfo
->
lpX11Trans
)
if
(
pfo
->
lf
.
lfEscapement
&&
pfo
->
lpX11Trans
)
rotated
=
TRUE
;
rotated
=
TRUE
;
TRACE
(
"hdc=%p df=%04x %d,%d %s, %d flags=%d lpDx=%p
\n
"
,
TRACE
(
"hdc=%p df=%04x %d,%d
rc %s
%s, %d flags=%d lpDx=%p
\n
"
,
physDev
->
hdc
,
(
UINT16
)(
physDev
->
font
),
x
,
y
,
physDev
->
hdc
,
(
UINT16
)
physDev
->
font
,
x
,
y
,
wine_dbgstr_rect
(
lprect
)
,
debugstr_wn
(
wstr
,
count
),
count
,
flags
,
lpDx
);
debugstr_wn
(
wstr
,
count
),
count
,
flags
,
lpDx
);
if
(
lprect
!=
NULL
)
TRACE
(
"
\t
rect=(%d,%d - %d,%d)
\n
"
,
lprect
->
left
,
lprect
->
top
,
lprect
->
right
,
lprect
->
bottom
);
/* Draw the rectangle */
/* Draw the rectangle */
if
(
flags
&
ETO_OPAQUE
)
if
(
flags
&
ETO_OPAQUE
)
...
@@ -126,24 +122,26 @@ X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
...
@@ -126,24 +122,26 @@ X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
}
}
else
else
{
{
XTextItem16
*
items
,
*
pitem
;
XTextItem16
*
items
;
pitem
=
items
=
HeapAlloc
(
GetProcessHeap
(),
0
,
items
=
HeapAlloc
(
GetProcessHeap
(),
0
,
count
*
sizeof
(
XTextItem16
)
);
count
*
sizeof
(
XTextItem16
)
);
if
(
items
==
NULL
)
goto
FAIL
;
if
(
items
==
NULL
)
goto
FAIL
;
for
(
i
=
0
;
i
<
count
;
i
++
)
items
[
0
].
chars
=
str2b
;
items
[
0
].
delta
=
0
;
items
[
0
].
nchars
=
1
;
items
[
0
].
font
=
None
;
for
(
i
=
1
;
i
<
count
;
i
++
)
{
{
pitem
->
chars
=
str2b
+
i
;
items
[
i
].
chars
=
str2b
+
i
;
pitem
->
delta
=
lpDx
[
i
];
items
[
i
].
delta
=
(
flags
&
ETO_PDY
)
?
lpDx
[(
i
-
1
)
*
2
]
:
lpDx
[
i
-
1
];
pitem
->
nchars
=
1
;
items
[
i
].
delta
-=
X11DRV_cptable
[
pfo
->
fi
->
cptable
].
pTextWidth
(
pfo
,
str2b
+
i
-
1
,
1
)
;
pitem
->
font
=
None
;
items
[
i
].
nchars
=
1
;
pitem
++
;
items
[
i
].
font
=
None
;
}
}
X11DRV_cptable
[
pfo
->
fi
->
cptable
].
pDrawText
(
pfo
,
gdi_display
,
X11DRV_cptable
[
pfo
->
fi
->
cptable
].
pDrawText
(
pfo
,
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
physDev
->
drawable
,
physDev
->
gc
,
physDev
->
dc_rect
.
left
+
x
,
physDev
->
dc_rect
.
top
+
y
,
items
,
pitem
-
items
);
physDev
->
dc_rect
.
left
+
x
,
physDev
->
dc_rect
.
top
+
y
,
items
,
count
);
HeapFree
(
GetProcessHeap
(),
0
,
items
);
HeapFree
(
GetProcessHeap
(),
0
,
items
);
}
}
}
}
...
@@ -167,7 +165,7 @@ X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
...
@@ -167,7 +165,7 @@ X11DRV_ExtTextOut( X11DRV_PDEVICE *physDev, INT x, INT y, UINT flags,
x_i
,
y_i
,
&
str2b
[
i
],
1
);
x_i
,
y_i
,
&
str2b
[
i
],
1
);
if
(
lpDx
)
if
(
lpDx
)
{
{
offset
+=
lpDx
[
i
];
offset
+=
(
flags
&
ETO_PDY
)
?
lpDx
[
i
*
2
]
:
lpDx
[
i
];
}
}
else
else
{
{
...
...
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