Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/ots/src/hmtx.cc

Issue 1252363005: Update OTS to revision a7a3b94 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/ots/src/hhea.cc ('k') | third_party/ots/src/kern.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "hmtx.h" 5 #include "hmtx.h"
6 6
7 #include "hhea.h" 7 #include "hhea.h"
8 #include "maxp.h" 8 #include "maxp.h"
9 9
10 // hmtx - Horizontal Metrics 10 // hmtx - Horizontal Metrics
11 // http://www.microsoft.com/typography/otspec/hmtx.htm 11 // http://www.microsoft.com/typography/otspec/hmtx.htm
12 12
13 #define TABLE_NAME "hmtx" 13 #define TABLE_NAME "hmtx"
14 14
15 namespace ots { 15 namespace ots {
16 16
17 bool ots_hmtx_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { 17 bool ots_hmtx_parse(Font *font, const uint8_t *data, size_t length) {
18 Buffer table(data, length); 18 Buffer table(data, length);
19 OpenTypeHMTX *hmtx = new OpenTypeHMTX; 19 OpenTypeHMTX *hmtx = new OpenTypeHMTX;
20 file->hmtx = hmtx; 20 font->hmtx = hmtx;
21 21
22 if (!file->hhea || !file->maxp) { 22 if (!font->hhea || !font->maxp) {
23 return OTS_FAILURE_MSG("Missing hhea or maxp tables in font, needed by hmtx" ); 23 return OTS_FAILURE_MSG("Missing hhea or maxp tables in font, needed by hmtx" );
24 } 24 }
25 25
26 if (!ParseMetricsTable(file, &table, file->maxp->num_glyphs, 26 if (!ParseMetricsTable(font, &table, font->maxp->num_glyphs,
27 &file->hhea->header, &hmtx->metrics)) { 27 &font->hhea->header, &hmtx->metrics)) {
28 return OTS_FAILURE_MSG("Failed to parse hmtx metrics"); 28 return OTS_FAILURE_MSG("Failed to parse hmtx metrics");
29 } 29 }
30 30
31 return true; 31 return true;
32 } 32 }
33 33
34 bool ots_hmtx_should_serialise(OpenTypeFile *file) { 34 bool ots_hmtx_should_serialise(Font *font) {
35 return file->hmtx != NULL; 35 return font->hmtx != NULL;
36 } 36 }
37 37
38 bool ots_hmtx_serialise(OTSStream *out, OpenTypeFile *file) { 38 bool ots_hmtx_serialise(OTSStream *out, Font *font) {
39 if (!SerialiseMetricsTable(file, out, &file->hmtx->metrics)) { 39 if (!SerialiseMetricsTable(font, out, &font->hmtx->metrics)) {
40 return OTS_FAILURE_MSG("Failed to serialise htmx metrics"); 40 return OTS_FAILURE_MSG("Failed to serialise htmx metrics");
41 } 41 }
42 return true; 42 return true;
43 } 43 }
44 44
45 void ots_hmtx_free(OpenTypeFile *file) { 45 void ots_hmtx_reuse(Font *font, Font *other) {
46 delete file->hmtx; 46 font->hmtx = other->hmtx;
47 font->hmtx_reused = true;
48 }
49
50 void ots_hmtx_free(Font *font) {
51 delete font->hmtx;
47 } 52 }
48 53
49 } // namespace ots 54 } // namespace ots
50 55
51 #undef TABLE_NAME 56 #undef TABLE_NAME
OLDNEW
« no previous file with comments | « third_party/ots/src/hhea.cc ('k') | third_party/ots/src/kern.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698