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

Side by Side Diff: src/core/SkPaintOptionsAndroid.cpp

Issue 14761003: API modifications needed to upstream Android font changes. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: addressing comments Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « src/core/SkPaint.cpp ('k') | src/core/SkScalerContext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 /*
3 * Copyright 2012 The Android Open Source Project
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9 #ifdef SK_BUILD_FOR_ANDROID
10
11 #include "SkPaintOptionsAndroid.h"
12 #include "SkFlattenableBuffers.h"
13 #include "SkTDict.h"
14 #include "SkThread.h"
15 #include <cstring>
16
17 SkLanguage SkLanguage::getParent() const {
18 SkASSERT(!fTag.isEmpty());
19 const char* tag = fTag.c_str();
20
21 // strip off the rightmost "-.*"
22 char* parentTagEnd = strrchr(tag, '-');
23 if (parentTagEnd == NULL) {
24 return SkLanguage();
25 }
26 size_t parentTagLen = parentTagEnd - tag;
27 return SkLanguage(tag, parentTagLen);
28 }
29
30 void SkPaintOptionsAndroid::flatten(SkFlattenableWriteBuffer& buffer) const {
31 buffer.writeUInt(fFontVariant);
32 buffer.writeString(fLanguage.getTag().c_str());
33 }
34
35 void SkPaintOptionsAndroid::unflatten(SkFlattenableReadBuffer& buffer) {
36 fFontVariant = (FontVariant)buffer.readUInt();
37 char* tag = buffer.readString();
38 fLanguage = SkLanguage(tag);
39 sk_free(tag);
40 }
41
42 #endif
OLDNEW
« no previous file with comments | « src/core/SkPaint.cpp ('k') | src/core/SkScalerContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698