OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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_RESOURCES_LAYER_UPDATER_H_ | 5 #ifndef CC_RESOURCES_LAYER_UPDATER_H_ |
6 #define CC_RESOURCES_LAYER_UPDATER_H_ | 6 #define CC_RESOURCES_LAYER_UPDATER_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 public: | 22 public: |
23 // Allows updaters to store per-resource update properties. | 23 // Allows updaters to store per-resource update properties. |
24 class CC_EXPORT Resource { | 24 class CC_EXPORT Resource { |
25 public: | 25 public: |
26 virtual ~Resource(); | 26 virtual ~Resource(); |
27 | 27 |
28 PrioritizedResource* texture() { return texture_.get(); } | 28 PrioritizedResource* texture() { return texture_.get(); } |
29 // TODO(reveman): partial_update should be a property of this class | 29 // TODO(reveman): partial_update should be a property of this class |
30 // instead of an argument passed to Update(). | 30 // instead of an argument passed to Update(). |
31 virtual void Update(ResourceUpdateQueue* queue, | 31 virtual void Update(ResourceUpdateQueue* queue, |
32 gfx::Rect source_rect, | 32 const gfx::Rect& source_rect, |
33 gfx::Vector2d dest_offset, | 33 gfx::Vector2d dest_offset, |
34 bool partial_update) = 0; | 34 bool partial_update) = 0; |
35 protected: | 35 protected: |
36 explicit Resource(scoped_ptr<PrioritizedResource> texture); | 36 explicit Resource(scoped_ptr<PrioritizedResource> texture); |
37 | 37 |
38 private: | 38 private: |
39 scoped_ptr<PrioritizedResource> texture_; | 39 scoped_ptr<PrioritizedResource> texture_; |
40 | 40 |
41 DISALLOW_COPY_AND_ASSIGN(Resource); | 41 DISALLOW_COPY_AND_ASSIGN(Resource); |
42 }; | 42 }; |
43 | 43 |
44 LayerUpdater() {} | 44 LayerUpdater() {} |
45 | 45 |
46 virtual scoped_ptr<Resource> CreateResource( | 46 virtual scoped_ptr<Resource> CreateResource( |
47 PrioritizedResourceManager* manager) = 0; | 47 PrioritizedResourceManager* manager) = 0; |
48 // The |resulting_opaque_rect| gives back a region of the layer that was | 48 // The |resulting_opaque_rect| gives back a region of the layer that was |
49 // painted opaque. If the layer is marked opaque in the updater, then this | 49 // painted opaque. If the layer is marked opaque in the updater, then this |
50 // region should be ignored in preference for the entire layer's area. | 50 // region should be ignored in preference for the entire layer's area. |
51 virtual void PrepareToUpdate(gfx::Rect content_rect, | 51 virtual void PrepareToUpdate(const gfx::Rect& content_rect, |
52 gfx::Size tile_size, | 52 gfx::Size tile_size, |
53 float contents_width_scale, | 53 float contents_width_scale, |
54 float contents_height_scale, | 54 float contents_height_scale, |
55 gfx::Rect* resulting_opaque_rect) {} | 55 gfx::Rect* resulting_opaque_rect) {} |
56 virtual void ReduceMemoryUsage() {} | 56 virtual void ReduceMemoryUsage() {} |
57 | 57 |
58 // Set true by the layer when it is known that the entire output is going to | 58 // Set true by the layer when it is known that the entire output is going to |
59 // be opaque. | 59 // be opaque. |
60 virtual void SetOpaque(bool opaque) {} | 60 virtual void SetOpaque(bool opaque) {} |
61 | 61 |
62 protected: | 62 protected: |
63 virtual ~LayerUpdater() {} | 63 virtual ~LayerUpdater() {} |
64 | 64 |
65 private: | 65 private: |
66 friend class base::RefCounted<LayerUpdater>; | 66 friend class base::RefCounted<LayerUpdater>; |
67 | 67 |
68 DISALLOW_COPY_AND_ASSIGN(LayerUpdater); | 68 DISALLOW_COPY_AND_ASSIGN(LayerUpdater); |
69 }; | 69 }; |
70 | 70 |
71 } // namespace cc | 71 } // namespace cc |
72 | 72 |
73 #endif // CC_RESOURCES_LAYER_UPDATER_H_ | 73 #endif // CC_RESOURCES_LAYER_UPDATER_H_ |
OLD | NEW |