aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkTypeface.h
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2014-09-18 10:55:32 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-09-18 10:55:32 -0700
commitd71b75757335393d9643a5b7a0f2769b6ba52fb6 (patch)
tree24896b8f1ee45232d610d73fad13ed21ff9c6e4d /include/core/SkTypeface.h
parent65b427cff9cd34a06ff060d65d00cc3615d8fd94 (diff)
Serialize the font index.
BUG=skia:1186 R=reed@google.com Author: bungeman@google.com Review URL: https://codereview.chromium.org/567013002
Diffstat (limited to 'include/core/SkTypeface.h')
-rw-r--r--include/core/SkTypeface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkTypeface.h b/include/core/SkTypeface.h
index 1df467a0e5..cb87a6a6fc 100644
--- a/include/core/SkTypeface.h
+++ b/include/core/SkTypeface.h
@@ -114,13 +114,13 @@ public:
/** Return a new typeface given a file. If the file does not exist, or is
not a valid font file, returns null.
*/
- static SkTypeface* CreateFromFile(const char path[]);
+ static SkTypeface* CreateFromFile(const char path[], int index = 0);
/** Return a new typeface given a stream. If the stream is
not a valid font file, returns null. Ownership of the stream is
transferred, so the caller must not reference it again.
*/
- static SkTypeface* CreateFromStream(SkStream* stream);
+ static SkTypeface* CreateFromStream(SkStream* stream, int index = 0);
/** Write a unique signature to a stream, sufficient to reconstruct a
typeface referencing the same font when Deserialize is called.