| 24 | class TextShaperPrimitive : public TextShaper { |
| 25 | public: |
| 26 | explicit TextShaperPrimitive(std::vector<std::shared_ptr<Typeface>> fallbackTypefaceList) |
| 27 | : fallbackTypefaces(std::move(fallbackTypefaceList)) { |
| 28 | } |
| 29 | |
| 30 | std::shared_ptr<TextBlob> shape(const std::string& text, std::shared_ptr<Typeface> typeface, |
| 31 | float fontSize) override { |
nothing calls this directly
no outgoing calls
no test coverage detected