Flutter Engine
 
Loading...
Searching...
No Matches
dl_text.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
6
7#include <memory>
8
9namespace flutter {
10
11bool DlText::operator==(const DlText& other) const {
12 return GetTextBlob() == other.GetTextBlob() &&
13 GetTextFrame() == other.GetTextFrame();
14}
15
16} // namespace flutter
virtual const SkTextBlob * GetTextBlob() const =0
bool operator==(const DlText &other) const
Definition dl_text.cc:11
virtual std::shared_ptr< impeller::TextFrame > GetTextFrame() const =0