OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_LAYERS_SURFACE_LAYER_H_ | 5 #ifndef CC_LAYERS_SURFACE_LAYER_H_ |
6 #define CC_LAYERS_SURFACE_LAYER_H_ | 6 #define CC_LAYERS_SURFACE_LAYER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
10 #include "cc/layers/layer.h" | 10 #include "cc/layers/layer.h" |
11 #include "cc/surfaces/surface_embedding_base.h" | |
11 #include "cc/surfaces/surface_id.h" | 12 #include "cc/surfaces/surface_id.h" |
12 #include "cc/surfaces/surface_sequence.h" | 13 #include "cc/surfaces/surface_sequence.h" |
13 #include "ui/gfx/geometry/size.h" | 14 #include "ui/gfx/geometry/size.h" |
14 | 15 |
15 namespace cc { | 16 namespace cc { |
16 | 17 |
17 // A layer that renders a surface referencing the output of another compositor | 18 // A layer that renders a surface referencing the output of another compositor |
18 // instance or client. | 19 // instance or client. |
19 class CC_EXPORT SurfaceLayer : public Layer { | 20 class CC_EXPORT SurfaceLayer : public Layer { |
20 public: | 21 public: |
21 // This callback is run when a SurfaceSequence needs to be satisfied, but | 22 static scoped_refptr<SurfaceLayer> Create(SurfaceEmbeddingPtr); |
Fady Samuel
2016/12/12 16:11:59
nit: scoped_refptr<SurfaceEmbedding> surface_embed
| |
22 // the parent compositor is unable to. It can be called on either the main | 23 void SetSurfaceInfo(const SurfaceId& id, float scale, const gfx::Size& size); |
Fady Samuel
2016/12/12 16:11:59
I'd rather have just one way to set surface info.
| |
23 // or impl threads. | 24 void SetSurfaceInfo(const SurfaceInfo& surface_info); |
24 using SatisfyCallback = base::Callback<void(const SurfaceSequence&)>; | |
25 | |
26 // This callback is run to require that a specific SurfaceSequence is | |
27 // received before a SurfaceId is destroyed. | |
28 using RequireCallback = | |
29 base::Callback<void(const SurfaceId&, const SurfaceSequence&)>; | |
30 | |
31 static scoped_refptr<SurfaceLayer> Create( | |
32 const SatisfyCallback& satisfy_callback, | |
33 const RequireCallback& require_callback); | |
34 | |
35 void SetSurfaceId(const SurfaceId& surface_id, | |
36 float scale, | |
37 const gfx::Size& size); | |
38 | 25 |
39 // Layer overrides. | 26 // Layer overrides. |
40 std::unique_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; | 27 std::unique_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; |
41 void SetLayerTreeHost(LayerTreeHost* host) override; | 28 void SetLayerTreeHost(LayerTreeHost* host) override; |
42 void PushPropertiesTo(LayerImpl* layer) override; | 29 void PushPropertiesTo(LayerImpl* layer) override; |
43 | 30 |
44 SurfaceId surface_id() const { return surface_id_; } | 31 const SurfaceEmbeddingPtr& ref_factory() const { return ref_factory_; } |
45 const gfx::Size& surface_size() const { return surface_size_; } | 32 const SurfaceInfo& surface_info() const { return surface_info_; } |
46 float surface_scale() const { return surface_scale_; } | |
47 | |
48 const SatisfyCallback& satisfy_callback() const { return satisfy_callback_; } | |
49 const RequireCallback& require_callback() const { return require_callback_; } | |
50 | 33 |
51 protected: | 34 protected: |
52 SurfaceLayer(const SatisfyCallback& satisfy_callback, | 35 explicit SurfaceLayer(SurfaceEmbeddingPtr); |
53 const RequireCallback& require_callback); | |
54 bool HasDrawableContent() const override; | 36 bool HasDrawableContent() const override; |
55 | 37 |
56 private: | 38 private: |
57 ~SurfaceLayer() override; | 39 ~SurfaceLayer() override; |
58 void CreateNewDestroySequence(); | 40 void RemoveCurrentReference(); |
59 void SatisfyDestroySequence(); | |
60 | 41 |
61 SurfaceId surface_id_; | 42 SurfaceInfo surface_info_; |
62 gfx::Size surface_size_; | 43 SurfaceEmbeddingPtr ref_factory_; |
63 float surface_scale_; | 44 SurfaceRefPtr current_ref_; |
64 SurfaceSequence destroy_sequence_; | |
65 SatisfyCallback satisfy_callback_; | |
66 RequireCallback require_callback_; | |
67 | 45 |
68 DISALLOW_COPY_AND_ASSIGN(SurfaceLayer); | 46 DISALLOW_COPY_AND_ASSIGN(SurfaceLayer); |
69 }; | 47 }; |
70 | 48 |
71 } // namespace cc | 49 } // namespace cc |
72 | 50 |
73 #endif // CC_LAYERS_SURFACE_LAYER_H_ | 51 #endif // CC_LAYERS_SURFACE_LAYER_H_ |
OLD | NEW |