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

Unified Diff: src/maxp.cc

Issue 658573004: Updating to new OTS repo from https://github.com/khaledhosny/ots.git (Closed) Base URL: https://chromium.googlesource.com/external/ots@master
Patch Set: Adding Colored Emoji changes from external/git repo Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« .gitmodules ('K') | « src/math.cc ('k') | src/metrics.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/maxp.cc
diff --git a/src/maxp.cc b/src/maxp.cc
old mode 100644
new mode 100755
index 7edd9686ab4d752399073345ead9a7d4f14ed93b..aaf00760a90c0c01214b1f6cdd917255ab69c8e7
--- a/src/maxp.cc
+++ b/src/maxp.cc
@@ -5,7 +5,9 @@
#include "maxp.h"
// maxp - Maximum Profile
-// http://www.microsoft.com/opentype/otspec/maxp.htm
+// http://www.microsoft.com/typography/otspec/maxp.htm
+
+#define TABLE_NAME "maxp"
namespace ots {
@@ -17,19 +19,19 @@ bool ots_maxp_parse(OpenTypeFile *file, const uint8_t *data, size_t length) {
uint32_t version = 0;
if (!table.ReadU32(&version)) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Failed to read version of maxp table");
}
if (version >> 16 > 1) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Bad maxp version %d", version);
}
if (!table.ReadU16(&maxp->num_glyphs)) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Failed to read number of glyphs from maxp table");
}
if (!maxp->num_glyphs) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Bad number of glyphs 0 in maxp table");
}
if (version >> 16 == 1) {
@@ -47,7 +49,7 @@ bool ots_maxp_parse(OpenTypeFile *file, const uint8_t *data, size_t length) {
!table.ReadU16(&maxp->max_size_glyf_instructions) ||
!table.ReadU16(&maxp->max_c_components) ||
!table.ReadU16(&maxp->max_c_depth)) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Failed to read maxp table");
}
if (maxp->max_zones == 0) {
@@ -61,7 +63,7 @@ bool ots_maxp_parse(OpenTypeFile *file, const uint8_t *data, size_t length) {
}
if ((maxp->max_zones != 1) && (maxp->max_zones != 2)) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Bad max zones %d in maxp", maxp->max_zones);
}
} else {
maxp->version_1 = false;
@@ -79,7 +81,7 @@ bool ots_maxp_serialise(OTSStream *out, OpenTypeFile *file) {
if (!out->WriteU32(maxp->version_1 ? 0x00010000 : 0x00005000) ||
!out->WriteU16(maxp->num_glyphs)) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Failed to write maxp version or number of glyphs");
}
if (!maxp->version_1) return true;
@@ -88,34 +90,22 @@ bool ots_maxp_serialise(OTSStream *out, OpenTypeFile *file) {
!out->WriteU16(maxp->max_contours) ||
!out->WriteU16(maxp->max_c_points) ||
!out->WriteU16(maxp->max_c_contours)) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Failed to write maxp");
}
- if (g_transcode_hints) {
- if (!out->WriteU16(maxp->max_zones) ||
- !out->WriteU16(maxp->max_t_points) ||
- !out->WriteU16(maxp->max_storage) ||
- !out->WriteU16(maxp->max_fdefs) ||
- !out->WriteU16(maxp->max_idefs) ||
- !out->WriteU16(maxp->max_stack) ||
- !out->WriteU16(maxp->max_size_glyf_instructions)) {
- return OTS_FAILURE();
- }
- } else {
- if (!out->WriteU16(1) || // max zones
- !out->WriteU16(0) || // max twilight points
- !out->WriteU16(0) || // max storage
- !out->WriteU16(0) || // max function defs
- !out->WriteU16(0) || // max instruction defs
- !out->WriteU16(0) || // max stack elements
- !out->WriteU16(0)) { // max instruction byte count
- return OTS_FAILURE();
- }
+ if (!out->WriteU16(maxp->max_zones) ||
+ !out->WriteU16(maxp->max_t_points) ||
+ !out->WriteU16(maxp->max_storage) ||
+ !out->WriteU16(maxp->max_fdefs) ||
+ !out->WriteU16(maxp->max_idefs) ||
+ !out->WriteU16(maxp->max_stack) ||
+ !out->WriteU16(maxp->max_size_glyf_instructions)) {
+ return OTS_FAILURE_MSG("Failed to write more maxp");
}
if (!out->WriteU16(maxp->max_c_components) ||
!out->WriteU16(maxp->max_c_depth)) {
- return OTS_FAILURE();
+ return OTS_FAILURE_MSG("Failed to write yet more maxp");
}
return true;
@@ -126,3 +116,5 @@ void ots_maxp_free(OpenTypeFile *file) {
}
} // namespace ots
+
+#undef TABLE_NAME
« .gitmodules ('K') | « src/math.cc ('k') | src/metrics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698