Chromium Code Reviews| Index: cc/output/begin_frame_args.h |
| diff --git a/cc/output/begin_frame_args.h b/cc/output/begin_frame_args.h |
| index d7b139171bf5c16f51ae5fd766796a837f2548be..01c004f0ee17c4da214c59b396f18dd0d2982c87 100644 |
| --- a/cc/output/begin_frame_args.h |
| +++ b/cc/output/begin_frame_args.h |
| @@ -110,6 +110,60 @@ struct CC_EXPORT BeginFrameArgs { |
| BeginFrameArgsType type); |
| }; |
| +// Sent by a BeginFrameObserver as acknowledgment of completing a BeginFrame. |
| +struct CC_EXPORT BeginFrameAck { |
| + BeginFrameAck(); |
| + BeginFrameAck(uint64_t source_id, |
| + uint64_t sequence_number, |
| + uint64_t latest_confirmed_frame, |
| + uint32_t remaining_frames, |
| + bool has_damage); |
| + |
| + // Source identifier of the BeginFrame that is acknowledged. The |
| + // BeginFrameSource that receives the acknowledgment uses this to discard |
| + // BeginFrameAcks for BeginFrames sent by a different source. Such a situation |
| + // may occur when the BeginFrameSource of the observer changes while a |
| + // BeginFrame from the old source is still in flight. |
| + uint64_t source_id; |
|
brianderson
2016/12/21 20:15:06
uint32_t here or uint64_t elsewhere. Don't care wh
Eric Seckler
2016/12/22 11:11:48
thanks, this should be uint32_t :)
|
| + |
| + // Sequence number of the BeginFrame that is acknowledged. |
| + uint64_t sequence_number; |
| + |
| + // Sequence number of the latest BeginFrame that was positively acknowledged |
| + // (confirmed) by the observer. |
| + // |
| + // There are two scenarios for a positive acknowledgment: |
| + // a) All of the observer's pending updates led to successful damage (e.g. a |
| + // CompositorFrame or a damaged surface). |
| + // b) The observer did not have any updates and thus did not need to |
| + // produce damage. |
| + // A negative acknowledgment, in contrast, describes a situation in which the |
| + // observer had pending updates, but was unable to successfully produce |
| + // corresponding damage for all its updates in time. |
| + // |
| + // As a result, |latest_confirmed_frame| describes the "staleness" of the last |
| + // damage that was produced by the observer. Note that even if |
| + // |has_damage == true|, the damage produced as a result of the acknowledged |
| + // BeginFrame may be stale (|latest_confirmed_frame < sequence_number|). In |
| + // such a case, the damage that was produced may contain updates from previous |
| + // BeginFrames or only part of this BeginFrame's updates. |
| + // |
| + // Observers aggregate the |latest_confirmed_frame| of their children: The |
| + // compositor Scheduler indicates the latest BeginFrame that both impl and |
| + // main thread confirmed. Likewise, the DisplayScheduler indicates the minimum |
| + // |latest_confirmed_frame| that all its BeginFrameObservers acknowledged. |
| + // TODO(eseckler): Set this in Scheduler / DisplayScheduler and other |
| + // observers according to above comment. |
| + uint64_t latest_confirmed_frame; |
|
brianderson
2016/12/21 20:15:06
If this is a sequence number, would it be clearer
Eric Seckler
2016/12/22 11:11:48
I guess so :) Changed to "latest_confirmed_sequenc
|
| + |
| + // Number of BeginFrames queued at the observer at time of acknowledgment. |
| + uint32_t remaining_frames; |
|
brianderson
2016/12/21 20:15:06
Is this useful for anything anymore? If not, feel
Eric Seckler
2016/12/22 11:11:48
Yeah, I think we can get rid of it. Let's do that
brianderson
2017/01/03 19:30:16
sg.
|
| + |
| + // |true| if the observer has produced damage (e.g. sent a CompositorFrame or |
| + // damaged a surface) as part of responding to the BeginFrame. |
| + bool has_damage; |
|
brianderson
2016/12/21 20:15:06
Even if there isn't damage, the compositor might r
Eric Seckler
2016/12/22 11:11:48
Hehe, that was the field's original name :)
I thi
brianderson
2017/01/03 19:30:16
I see. Don't want to bikeshed this, has_damage is
|
| +}; |
| + |
| } // namespace cc |
| #endif // CC_OUTPUT_BEGIN_FRAME_ARGS_H_ |