summaryrefslogtreecommitdiffstats
path: root/gfx/ots/src/hmtx.cc
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-11-14 21:08:43 -0500
committerMatt A. Tobin <email@mattatobin.com>2019-11-14 21:08:43 -0500
commit1d30f6fa8413746ddc408f93710d701493af273d (patch)
treeabe84e83d704e13c60c90db7ac4b9e363d8a81fc /gfx/ots/src/hmtx.cc
parent9308ec68e863e4c6e650680370a5d7baa9f0d1f3 (diff)
parent00573571a226a0c59dd744da67483864a22911aa (diff)
downloadUXP-1d30f6fa8413746ddc408f93710d701493af273d.tar
UXP-1d30f6fa8413746ddc408f93710d701493af273d.tar.gz
UXP-1d30f6fa8413746ddc408f93710d701493af273d.tar.lz
UXP-1d30f6fa8413746ddc408f93710d701493af273d.tar.xz
UXP-1d30f6fa8413746ddc408f93710d701493af273d.zip
Merge branch 'master' into mailnews-work
Diffstat (limited to 'gfx/ots/src/hmtx.cc')
-rw-r--r--gfx/ots/src/hmtx.cc43
1 files changed, 5 insertions, 38 deletions
diff --git a/gfx/ots/src/hmtx.cc b/gfx/ots/src/hmtx.cc
index 667d1fe6f..2ef7771fd 100644
--- a/gfx/ots/src/hmtx.cc
+++ b/gfx/ots/src/hmtx.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2009-2017 The OTS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -10,47 +10,14 @@
// hmtx - Horizontal Metrics
// http://www.microsoft.com/typography/otspec/hmtx.htm
-#define TABLE_NAME "hmtx"
-
namespace ots {
-bool ots_hmtx_parse(Font *font, const uint8_t *data, size_t length) {
- Buffer table(data, length);
- OpenTypeHMTX *hmtx = new OpenTypeHMTX;
- font->hmtx = hmtx;
-
- if (!font->hhea || !font->maxp) {
- return OTS_FAILURE_MSG("Missing hhea or maxp tables in font, needed by hmtx");
- }
-
- if (!ParseMetricsTable(font, &table, font->maxp->num_glyphs,
- &font->hhea->header, &hmtx->metrics)) {
- return OTS_FAILURE_MSG("Failed to parse hmtx metrics");
- }
-
- return true;
-}
-
-bool ots_hmtx_should_serialise(Font *font) {
- return font->hmtx != NULL;
+bool OpenTypeHMTX::Parse(const uint8_t *data, size_t length) {
+ return OpenTypeMetricsTable::Parse(data, length);
}
-bool ots_hmtx_serialise(OTSStream *out, Font *font) {
- if (!SerialiseMetricsTable(font, out, &font->hmtx->metrics)) {
- return OTS_FAILURE_MSG("Failed to serialise htmx metrics");
- }
- return true;
-}
-
-void ots_hmtx_reuse(Font *font, Font *other) {
- font->hmtx = other->hmtx;
- font->hmtx_reused = true;
-}
-
-void ots_hmtx_free(Font *font) {
- delete font->hmtx;
+bool OpenTypeHMTX::Serialize(OTSStream *out) {
+ return OpenTypeMetricsTable::Serialize(out);
}
} // namespace ots
-
-#undef TABLE_NAME