This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
[Embedder API] Add multi-view present callback #51267
Merged
auto-submit
merged 2 commits into
flutter-team-archive:main
from
loic-sharma:multi_view_present
Mar 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1738,6 +1738,24 @@ typedef struct { | |
| FlutterBackingStorePresentInfo* backing_store_present_info; | ||
| } FlutterLayer; | ||
|
|
||
| typedef struct { | ||
| /// The size of this struct. | ||
| /// Must be sizeof(FlutterPresentViewInfo). | ||
| size_t struct_size; | ||
|
|
||
| /// The identifier of the target view. | ||
| FlutterViewId view_id; | ||
|
|
||
| /// The layers that should be composited onto the view. | ||
| const FlutterLayer** layers; | ||
|
|
||
| /// The count of layers. | ||
| size_t layers_count; | ||
|
|
||
| /// The |FlutterCompositor.user_data|. | ||
| void* user_data; | ||
| } FlutterPresentViewInfo; | ||
|
|
||
| typedef bool (*FlutterBackingStoreCreateCallback)( | ||
| const FlutterBackingStoreConfig* config, | ||
| FlutterBackingStore* backing_store_out, | ||
|
|
@@ -1751,13 +1769,22 @@ typedef bool (*FlutterLayersPresentCallback)(const FlutterLayer** layers, | |
| size_t layers_count, | ||
| void* user_data); | ||
|
|
||
| /// The callback invoked when the embedder should present | ||
| /// to a view. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: does this actually hit 80 columns?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice catch! I had wrapped this manually for the design doc but forgot to update it here - fixed! |
||
| /// | ||
| /// The |FlutterPresentViewInfo| will be deallocated | ||
| /// once the callback returns. | ||
| typedef bool (*FlutterPresentViewCallback)( | ||
| const FlutterPresentViewInfo* /* present info */); | ||
|
|
||
| typedef struct { | ||
| /// This size of this struct. Must be sizeof(FlutterCompositor). | ||
| size_t struct_size; | ||
| /// A baton that in not interpreted by the engine in any way. If it passed | ||
| /// back to the embedder in `FlutterCompositor.create_backing_store_callback`, | ||
| /// `FlutterCompositor.collect_backing_store_callback` and | ||
| /// `FlutterCompositor.present_layers_callback` | ||
| /// `FlutterCompositor.collect_backing_store_callback`, | ||
| /// `FlutterCompositor.present_layers_callback`, and | ||
| /// `FlutterCompositor.present_view_callback`. | ||
| void* user_data; | ||
| /// A callback invoked by the engine to obtain a backing store for a specific | ||
| /// `FlutterLayer`. | ||
|
|
@@ -1771,10 +1798,23 @@ typedef struct { | |
| /// embedder may collect any resources associated with the backing store. | ||
| FlutterBackingStoreCollectCallback collect_backing_store_callback; | ||
| /// Callback invoked by the engine to composite the contents of each layer | ||
| /// onto the screen. | ||
| /// onto the implicit view. | ||
| /// | ||
| /// DEPRECATED: Use |present_view_callback| to support multiple views. | ||
| /// | ||
| /// Only one of `present_layers_callback` and `present_view_callback` may be | ||
| /// provided. Providing both is an error and engine initialization will | ||
| /// terminate. | ||
| FlutterLayersPresentCallback present_layers_callback; | ||
| /// Avoid caching backing stores provided by this compositor. | ||
| bool avoid_backing_store_cache; | ||
| /// Callback invoked by the engine to composite the contents of each layer | ||
| /// onto the specified view. | ||
| /// | ||
| /// Only one of `present_layers_callback` and `present_view_callback` may be | ||
| /// provided. Providing both is an error and engine initialization will | ||
| /// terminate. | ||
| FlutterPresentViewCallback present_view_callback; | ||
| } FlutterCompositor; | ||
|
|
||
| typedef struct { | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.