Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
++
  • Loading branch information
jonahwilliams committed Sep 23, 2024
commit 90b85aa571d47bd945bda88167a7ebe81cdec8a4
3 changes: 2 additions & 1 deletion impeller/toolkit/interop/surface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ bool Surface::DrawDisplayList(const DisplayList& dl) const {
const auto cull_rect = IRect::MakeSize(surface_->GetSize());
auto skia_cull_rect =
SkIRect::MakeWH(cull_rect.GetWidth(), cull_rect.GetHeight());
impeller::TextFrameDispatcher collector(content_context, impeller::Matrix{});
impeller::TextFrameDispatcher collector(content_context, impeller::Matrix{},
Rect::MakeSize(surface_->GetSize()));
display_list->Dispatch(collector, skia_cull_rect);

impeller::ExperimentalDlDispatcher impeller_dispatcher(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ std::shared_ptr<GlyphAtlas> TypographerContextSkia::CreateGlyphAtlas(
if (new_glyphs.size() == 0) {
return last_atlas;
}
FML_LOG(ERROR) << "new_glyphs: " << new_glyphs.size();

// ---------------------------------------------------------------------------
// Step 2: Determine if the additional missing glyphs can be appended to the
Expand Down