summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@blackbox>2009-08-15 03:03:10 +0200
committerGrigori Goronzy <greg@blackbox>2009-08-15 03:03:10 +0200
commit1a3b6eef302a2fed759b8c278592c4dd371044fb (patch)
tree62cbc30fddb3b1ed06abc3bde1e8af6917990ffc
parent4449ec9df99716a1be439c38bffe2a5b013c60bf (diff)
downloadlibass-1a3b6eef302a2fed759b8c278592c4dd371044fb.tar.bz2
libass-1a3b6eef302a2fed759b8c278592c4dd371044fb.tar.xz
Fix caching of underlined/striked out glyphs
-rw-r--r--libass/ass_cache_template.h3
-rw-r--r--libass/ass_render.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/libass/ass_cache_template.h b/libass/ass_cache_template.h
index 19ab00f..8d182ad 100644
--- a/libass/ass_cache_template.h
+++ b/libass/ass_cache_template.h
@@ -54,7 +54,7 @@
// describes a bitmap; bitmaps with equivalents structs are considered identical
-START(bitmap, bipmap_hash_key)
+START(bitmap, bitmap_hash_key)
GENERIC(char, bitmap) // bool : true = bitmap, false = outline
GENERIC(ASS_Font *, font)
GENERIC(double, size) // font size
@@ -79,6 +79,7 @@ START(bitmap, bipmap_hash_key)
FTVECTOR(advance) // subpixel shift vector
FTVECTOR(shadow_offset) // shadow subpixel shift
GENERIC(unsigned, drawing_hash) // hashcode of a drawing
+ GENERIC(unsigned, flags) // glyph decoration
GENERIC(unsigned, border_style)
END(BitmapHashKey)
diff --git a/libass/ass_render.c b/libass/ass_render.c
index f0800c3..15f568d 100644
--- a/libass/ass_render.c
+++ b/libass/ass_render.c
@@ -2750,6 +2750,8 @@ ass_render_event(ASS_Renderer *render_priv, ASS_Event *event,
render_priv->state.shadow_y * render_priv->border_scale -
(int) (render_priv->state.shadow_y *
render_priv->border_scale));
+ text_info->glyphs[text_info->length].hash_key.flags =
+ render_priv->state.flags;
text_info->length++;