Index: src/core/SkFont.cpp |
diff --git a/src/core/SkFont.cpp b/src/core/SkFont.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5f123c3947edee74c19a3ce4855e47de7166664b |
--- /dev/null |
+++ b/src/core/SkFont.cpp |
@@ -0,0 +1,20 @@ |
+/* |
+ * Copyright 2014 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#include "SkFont.h" |
+ |
+SkFont::~SkFont() { |
+ SkSafeUnref(fTypeface); |
+} |
+ |
+int SkFont::textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding, |
+ uint16_t glyphs[], int maxGlyphCount) const { |
+} |
+ |
+SkScalar SkFont::measureText(const void* text, size_t byteLength, SkTextEncoding encoding) const { |
+} |
+ |