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
20 changes: 20 additions & 0 deletions shell/platform/linux/fl_engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,35 @@ struct _FlEngine {
// Thread the GLib main loop is running on.
GThread* thread;

// The project this engine is running.
FlDartProject* project;

// Renders the Flutter app.
FlRenderer* renderer;

// Messenger used to send and receive platform messages.
FlBinaryMessenger* binary_messenger;

// Implements the flutter/settings channel.
FlSettingsHandler* settings_handler;

// Implements the flutter/platform channel.
FlPlatformHandler* platform_handler;

// Manages textures rendered by native code.
FlTextureRegistrar* texture_registrar;

// Schedules tasks to be run on the appropriate thread.
FlTaskRunner* task_runner;

// Ahead of time data used to make engine run faster.
FlutterEngineAOTData aot_data;

// The Flutter engine.
FLUTTER_API_SYMBOL(FlutterEngine) engine;

// Function table for engine API, used to intercept engine calls for testing
// purposes.
FlutterEngineProcTable embedder_api;

// Next ID to use for a view.
Expand Down