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

Side by Side Diff: src/ports/SkFontConfigInterface_direct_google3.cpp

Issue 1471033002: Fix Google3 fonts. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Rename back to SkFontConfigInterface_direct.h Created 5 years 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
OLDNEW
(Empty)
1 /*
2 * Copyright 2009-2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 /* migrated from chrome/src/skia/ext/SkFontHost_fontconfig_direct.cpp */
9
10 #include "google_font_file_buffering.h"
11
12 #include "SkFontConfigInterface_direct_google3.h"
13 #include "SkStream.h"
14 #include "SkString.h"
15 #include "SkTypes.h"
16
17 bool SkFontConfigInterfaceDirectGoogle3::isAccessible(const char* filename) {
18 // Check if this font has been pre-loaded into memory.
19 const char* unused;
20 if (GoogleFreeType::GoogleFt2ReadFontFromMemory(filename, &unused) >= 0) {
21 return true;
22 }
23 return this->INHERITED::isAccessible(filename);
24 }
25
26 SkStreamAsset* SkFontConfigInterfaceDirectGoogle3::openStream(const FontIdentity & identity) {
27 const char* c_filename = identity.fString.c_str();
28 // Read the system fonts from the fonts we've pre-loaded into memory.
29 const char* buffer;
30 int length = GoogleFreeType::GoogleFt2ReadFontFromMemory(
31 c_filename, &buffer);
32 if (length >= 0) return new SkMemoryStream(buffer, length);
33 return this->INHERITED::openStream(identity);
34 }
OLDNEW
« no previous file with comments | « src/ports/SkFontConfigInterface_direct_google3.h ('k') | src/ports/SkFontConfigInterface_direct_google3_factory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698