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

Unified Diff: src/gdef.h

Issue 6410047: OTS: Adds more layout common table supports.... (Closed) Base URL: http://ots.googlecode.com/svn/trunk/
Patch Set: '' Created 9 years, 10 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
« no previous file with comments | « include/ots-memory-stream.h ('k') | src/gdef.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gdef.h
===================================================================
--- src/gdef.h (revision 50)
+++ src/gdef.h (working copy)
@@ -12,11 +12,18 @@
struct OpenTypeGDEF {
OpenTypeGDEF()
: version_2(false),
+ has_mark_attachment_class_def(false),
+ has_mark_glyph_sets_def(false),
+ num_mark_glyph_sets(0),
data(NULL),
length(0) {
}
bool version_2;
+ bool has_mark_attachment_class_def;
+ bool has_mark_glyph_sets_def;
+ uint16_t num_mark_glyph_sets;
+
const uint8_t *data;
size_t length;
};
« no previous file with comments | « include/ots-memory-stream.h ('k') | src/gdef.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698