summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/dvi.c
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2014-07-25 13:56:44 +0000
committerKhaled Hosny <khaledhosny@eglug.org>2014-07-25 13:56:44 +0000
commit5308a9f38e3812a4a9688061729ffd0630713d93 (patch)
treec11fe22dce0ea64fa7f92db1d71431b686c69ab4 /Build/source/texk/dvipdfm-x/dvi.c
parent796176898c849ec72156930daa2ea150b68c48a3 (diff)
Simplify
git-svn-id: svn://tug.org/texlive/trunk@34719 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/dvi.c')
-rw-r--r--Build/source/texk/dvipdfm-x/dvi.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/Build/source/texk/dvipdfm-x/dvi.c b/Build/source/texk/dvipdfm-x/dvi.c
index edd61d3ad8f..0c74084dc95 100644
--- a/Build/source/texk/dvipdfm-x/dvi.c
+++ b/Build/source/texk/dvipdfm-x/dvi.c
@@ -1160,8 +1160,7 @@ do_string (unsigned char *s, int len)
if (font->subfont_id < 0) {
pdf_dev_set_string(dvi_state.h, -dvi_state.v, s, len,
width, font->font_id, 1);
- if (compute_boxes && link_annot &&
- marked_depth >= tagged_depth) {
+ if (dvi_is_tracking_boxes()) {
pdf_rect rect;
height = tfm_string_height(font->tfm_id, s, len);
@@ -1261,8 +1260,7 @@ dvi_set (SIGNED_QUAD ch)
pdf_dev_set_string(dvi_state.h, -dvi_state.v, wbuf, 1,
width, font->font_id, 1);
}
- if (compute_boxes && link_annot &&
- marked_depth >= tagged_depth) {
+ if (dvi_is_tracking_boxes()) {
pdf_rect rect;
height = tfm_get_fw_height(font->tfm_id, ch);
@@ -1346,8 +1344,7 @@ dvi_put (SIGNED_QUAD ch)
pdf_dev_set_string(dvi_state.h, -dvi_state.v, wbuf, 1,
width, font->font_id, 1);
}
- if (compute_boxes && link_annot &&
- marked_depth >= tagged_depth) {
+ if (dvi_is_tracking_boxes()) {
pdf_rect rect;
height = tfm_get_fw_height(font->tfm_id, ch);
@@ -2101,7 +2098,7 @@ do_glyph_array (int yLocsPresent)
glyph_width = (double)font->size * (double)advance / (double)font->ft_face->units_per_EM;
glyph_width = glyph_width * font->extend;
- if (compute_boxes && link_annot && marked_depth >= tagged_depth) {
+ if (dvi_is_tracking_boxes()) {
pdf_rect rect;
height = (double)font->size * (double)font->ft_face->ascender / (double)font->ft_face->units_per_EM;
depth = (double)font->size * -(double)font->ft_face->descender / (double)font->ft_face->units_per_EM;