summaryrefslogtreecommitdiffstats
path: root/libass/ass_cache_template.h
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@blackbox>2009-07-28 01:42:03 +0200
committerGrigori Goronzy <greg@blackbox>2009-07-28 01:42:03 +0200
commit1ca079bc46a3ddfb5e4d017473324bad67139a88 (patch)
tree65c664a65df9ae42b232f3b1871699c68aa4b386 /libass/ass_cache_template.h
parentf21c5b6b2788d1ba2073cb4066eedee0de1b249e (diff)
downloadlibass-1ca079bc46a3ddfb5e4d017473324bad67139a88.tar.bz2
libass-1ca079bc46a3ddfb5e4d017473324bad67139a88.tar.xz
Clean up typedefs/structs
Remove useless _s suffix from struct names and remove struct name where not needed (only the typedef'd struct is used). Clean up API headers.
Diffstat (limited to 'libass/ass_cache_template.h')
-rw-r--r--libass/ass_cache_template.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libass/ass_cache_template.h b/libass/ass_cache_template.h
index d7eedaf..08bce24 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_s)
+START(bitmap, bipmap_hash_key)
GENERIC(char, bitmap) // bool : true = bitmap, false = outline
GENERIC(ass_font_t *, font)
GENERIC(double, size) // font size
@@ -82,7 +82,7 @@ START(bitmap, bipmap_hash_key_s)
END(bitmap_hash_key_t)
// describes an outline glyph
-START(glyph, glyph_hash_key_s)
+START(glyph, glyph_hash_key)
GENERIC(ass_font_t *, font)
GENERIC(double, size) // font size
GENERIC(uint32_t, ch) // character code
@@ -96,7 +96,7 @@ START(glyph, glyph_hash_key_s)
END(glyph_hash_key_t)
// Cache for composited bitmaps
-START(composite, composite_hash_key_s)
+START(composite, composite_hash_key)
GENERIC(int, aw)
GENERIC(int, ah)
GENERIC(int, bw)