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
6c9c9107
Commit
6c9c9107
authored
Nov 16, 2011
by
Huw Davies
Committed by
Alexandre Julliard
Nov 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Return valid anti-alias format bitmaps if the glyph is a monochrome bitmap.
parent
f3fab963
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
freetype.c
dlls/gdi32/freetype.c
+2
-4
No files found.
dlls/gdi32/freetype.c
View file @
6c9c9107
...
...
@@ -5289,9 +5289,7 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
}
if
(
ft_face
->
glyph
->
format
!=
ft_glyph_format_outline
&&
(
format
==
GGO_NATIVE
||
format
==
GGO_BEZIER
||
format
==
GGO_GRAY2_BITMAP
||
format
==
GGO_GRAY4_BITMAP
||
format
==
GGO_GRAY8_BITMAP
))
(
format
==
GGO_NATIVE
||
format
==
GGO_BEZIER
))
{
TRACE
(
"loaded a bitmap
\n
"
);
return
GDI_ERROR
;
...
...
@@ -5369,7 +5367,7 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
memset
(
buf
,
0
,
needed
);
while
(
h
--
)
{
for
(
x
=
0
;
x
<
pitch
&&
x
<
ft_face
->
glyph
->
bitmap
.
width
;
x
++
)
if
(
src
[
x
/
8
]
&
(
1
<<
(
(
7
-
(
x
%
8
)))))
dst
[
x
]
=
0xff
;
if
(
src
[
x
/
8
]
&
(
1
<<
(
(
7
-
(
x
%
8
)))))
dst
[
x
]
=
max_level
;
src
+=
ft_face
->
glyph
->
bitmap
.
pitch
;
dst
+=
pitch
;
}
...
...
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