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
a7dee44c
Commit
a7dee44c
authored
May 01, 2013
by
Sam Edwards
Committed by
Alexandre Julliard
May 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Improve glyph positioning for the subpixel case in get_glyph_outline.
parent
7129293b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
10 deletions
+24
-10
freetype.c
dlls/gdi32/freetype.c
+24
-10
No files found.
dlls/gdi32/freetype.c
View file @
a7dee44c
...
...
@@ -6352,20 +6352,35 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
}
x_shift
=
ft_face
->
glyph
->
bitmap_left
-
lpgm
->
gmptGlyphOrigin
.
x
;
if
(
x_shift
<
0
)
x_shift
=
0
;
if
(
x_shift
+
(
src_width
/
hmul
)
>
width
)
x_shift
=
width
-
(
src_width
/
hmul
);
if
(
x_shift
<
0
)
{
src
+=
hmul
*
-
x_shift
;
src_width
-=
hmul
*
-
x_shift
;
}
else
if
(
x_shift
>
0
)
{
dst
+=
x_shift
;
width
-=
x_shift
;
}
y_shift
=
lpgm
->
gmptGlyphOrigin
.
y
-
ft_face
->
glyph
->
bitmap_top
;
if
(
y_shift
<
0
)
y_shift
=
0
;
if
(
y_shift
+
(
src_height
/
vmul
)
>
height
)
y_shift
=
height
-
(
src_height
/
vmul
);
if
(
y_shift
<
0
)
{
src
+=
src_pitch
*
vmul
*
-
y_shift
;
src_height
-=
vmul
*
-
y_shift
;
}
else
if
(
y_shift
>
0
)
{
dst
+=
y_shift
*
(
pitch
/
sizeof
(
*
dst
)
);
height
-=
y_shift
;
}
dst
+=
x_shift
+
y_shift
*
(
pitch
/
4
);
width
=
min
(
width
,
src_width
/
hmul
);
height
=
min
(
height
,
src_height
/
vmul
);
while
(
height
--
)
{
for
(
x
=
0
;
x
<
width
&&
x
<
src_width
/
hmul
;
x
++
)
for
(
x
=
0
;
x
<
width
;
x
++
)
{
if
(
rgb
)
{
...
...
@@ -6383,8 +6398,7 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
}
}
src
+=
src_pitch
*
vmul
;
dst
+=
pitch
/
4
;
src_height
-=
vmul
;
dst
+=
pitch
/
sizeof
(
*
dst
);
}
break
;
...
...
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