Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions shell/platform/linux/fl_engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,11 @@ static bool compositor_create_backing_store_callback(

// Called when the backing store is to be released.
static bool compositor_collect_backing_store_callback(
const FlutterBackingStore* renderer,
const FlutterBackingStore* backing_store,
void* user_data) {
g_return_val_if_fail(FL_IS_RENDERER(user_data), false);
return fl_renderer_collect_backing_store(FL_RENDERER(user_data), renderer);
return fl_renderer_collect_backing_store(FL_RENDERER(user_data),
backing_store);
}

// Called when embedder should composite contents of each layer onto the screen.
Expand Down