cd2d4e4835
Extending text to grapheme edges should correct glyph range Bug: skia:10087 Change-Id: I254901aaaa40c2782d1afbd5d5390599bdd7c922 Change-Id: I1d51076656d09e4d2e35e3ddad28bfd60fc87081 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/281756 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Julia Lavrova <jlavrova@google.com>
24 lines
753 B
C++
24 lines
753 B
C++
// Copyright 2019 Google LLC.
|
|
#include "modules/skparagraph/include/FontCollection.h"
|
|
#include "modules/skparagraph/include/TypefaceFontProvider.h"
|
|
#include "src/core/SkFontDescriptor.h"
|
|
|
|
namespace skia {
|
|
namespace textlayout {
|
|
class TestFontCollection : public FontCollection {
|
|
public:
|
|
TestFontCollection(const std::string& resourceDir, bool testOnly = false, bool loadFonts = true);
|
|
~TestFontCollection() = default;
|
|
|
|
size_t fontsFound() const { return fFontsFound; }
|
|
bool addFontFromFile(const std::string& path, const std::string& familyName = "");
|
|
|
|
private:
|
|
std::string fResourceDir;
|
|
size_t fFontsFound;
|
|
sk_sp<TypefaceFontProvider> fFontProvider;
|
|
std::string fDirs;
|
|
};
|
|
} // namespace textlayout
|
|
} // namespace skia
|