forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
animator.h
63 lines (45 loc) · 1.59 KB
/
animator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_SHELL_COMMON_ANIMATOR_H_
#define FLUTTER_SHELL_COMMON_ANIMATOR_H_
#include "flutter/shell/common/engine.h"
#include "flutter/shell/common/rasterizer.h"
#include "flutter/shell/common/vsync_waiter.h"
#include "flutter/synchronization/pipeline.h"
#include "flutter/synchronization/semaphore.h"
#include "lib/ftl/memory/ref_ptr.h"
#include "lib/ftl/memory/weak_ptr.h"
#include "lib/ftl/time/time_point.h"
namespace shell {
class Animator {
public:
Animator(ftl::WeakPtr<Rasterizer> rasterizer,
VsyncWaiter* waiter,
Engine* engine);
~Animator();
void RequestFrame();
void Render(std::unique_ptr<flow::LayerTree> layer_tree);
void Start();
void Stop();
private:
using LayerTreePipeline = flutter::Pipeline<flow::LayerTree>;
void BeginFrame(ftl::TimePoint frame_start_time,
ftl::TimePoint frame_target_time);
void AwaitVSync();
ftl::WeakPtr<Rasterizer> rasterizer_;
VsyncWaiter* waiter_;
Engine* engine_;
ftl::TimePoint last_begin_frame_time_;
int64_t dart_frame_deadline_;
ftl::RefPtr<LayerTreePipeline> layer_tree_pipeline_;
flutter::Semaphore pending_frame_semaphore_;
LayerTreePipeline::ProducerContinuation producer_continuation_;
int64_t frame_number_;
bool paused_;
bool frame_scheduled_;
ftl::WeakPtrFactory<Animator> weak_factory_;
FTL_DISALLOW_COPY_AND_ASSIGN(Animator);
};
} // namespace shell
#endif // FLUTTER_SHELL_COMMON_ANIMATOR_H_