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
d99754ad
Commit
d99754ad
authored
Apr 22, 2010
by
Huw Davies
Committed by
Alexandre Julliard
Apr 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps.drv: Make the rectangle an optional parameter to get_bbox().
parent
09dc6019
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
download.c
dlls/wineps.drv/download.c
+11
-8
No files found.
dlls/wineps.drv/download.c
View file @
d99754ad
...
...
@@ -168,20 +168,23 @@ static BOOL is_room_for_font(PSDRV_PDEVICE *physDev)
* the font size we'll get the data directly from the TrueType HEAD table rather
* than using GetOutlineTextMetrics.
*/
static
BOOL
get_bbox
(
PSDRV_PDEVICE
*
physDev
,
RECT
*
rc
,
UINT
*
emsize
)
static
BOOL
get_bbox
(
HDC
hdc
,
RECT
*
rc
,
UINT
*
emsize
)
{
BYTE
head
[
54
];
/* the head table is 54 bytes long */
if
(
GetFontData
(
physDev
->
hdc
,
MS_MAKE_TAG
(
'h'
,
'e'
,
'a'
,
'd'
),
0
,
head
,
sizeof
(
head
))
==
GDI_ERROR
)
{
if
(
GetFontData
(
hdc
,
MS_MAKE_TAG
(
'h'
,
'e'
,
'a'
,
'd'
),
0
,
head
,
sizeof
(
head
))
==
GDI_ERROR
)
{
ERR
(
"Can't retrieve head table
\n
"
);
return
FALSE
;
}
*
emsize
=
GET_BE_WORD
(
head
+
18
);
/* unitsPerEm */
rc
->
left
=
(
signed
short
)
GET_BE_WORD
(
head
+
36
);
/* xMin */
rc
->
bottom
=
(
signed
short
)
GET_BE_WORD
(
head
+
38
);
/* yMin */
rc
->
right
=
(
signed
short
)
GET_BE_WORD
(
head
+
40
);
/* xMax */
rc
->
top
=
(
signed
short
)
GET_BE_WORD
(
head
+
42
);
/* yMax */
if
(
rc
)
{
rc
->
left
=
(
signed
short
)
GET_BE_WORD
(
head
+
36
);
/* xMin */
rc
->
bottom
=
(
signed
short
)
GET_BE_WORD
(
head
+
38
);
/* yMin */
rc
->
right
=
(
signed
short
)
GET_BE_WORD
(
head
+
40
);
/* xMax */
rc
->
top
=
(
signed
short
)
GET_BE_WORD
(
head
+
42
);
/* yMax */
}
return
TRUE
;
}
...
...
@@ -243,7 +246,7 @@ BOOL PSDRV_WriteSetDownloadFont(PSDRV_PDEVICE *physDev)
RECT
bbox
;
UINT
emsize
;
if
(
!
get_bbox
(
physDev
,
&
bbox
,
&
emsize
))
{
if
(
!
get_bbox
(
physDev
->
hdc
,
&
bbox
,
&
emsize
))
{
HeapFree
(
GetProcessHeap
(),
0
,
potm
);
return
FALSE
;
}
...
...
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