Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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_HEADS_UP_DISPLAY_LAYER_H_ | 5 #ifndef CC_HEADS_UP_DISPLAY_LAYER_H_ |
| 6 #define CC_HEADS_UP_DISPLAY_LAYER_H_ | 6 #define CC_HEADS_UP_DISPLAY_LAYER_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "cc/font_atlas.h" | 9 #include "cc/font_atlas.h" |
| 10 #include "cc/layer.h" | 10 #include "cc/layer.h" |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 | 13 |
| 14 struct HeadsUpDisplayLayerSettings { | |
|
danakj
2012/11/20 22:12:22
I'd rather not tie this to HUD layer so strongly,
| |
| 15 HeadsUpDisplayLayerSettings(); | |
| 16 | |
| 17 bool showFPSCounter; | |
| 18 bool showPlatformLayerTree; | |
| 19 | |
| 20 bool showPaintRects; | |
| 21 bool showPropertyChangedRects; | |
| 22 bool showSurfaceDamageRects; | |
| 23 bool showScreenSpaceRects; | |
| 24 bool showReplicaScreenSpaceRects; | |
| 25 bool showOccludingRects; | |
| 26 bool showNonOccludingRects; | |
| 27 | |
| 28 bool showDebugInfo() const; | |
| 29 bool showDebugRects() const; | |
| 30 | |
| 31 HeadsUpDisplayLayerSettings merge(HeadsUpDisplayLayerSettings& other); | |
| 32 }; | |
| 33 | |
| 14 class HeadsUpDisplayLayer : public Layer { | 34 class HeadsUpDisplayLayer : public Layer { |
| 15 public: | 35 public: |
| 16 static scoped_refptr<HeadsUpDisplayLayer> create(); | 36 static scoped_refptr<HeadsUpDisplayLayer> create(); |
| 17 | 37 |
| 18 virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, Rendering Stats&) OVERRIDE; | 38 virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, Rendering Stats&) OVERRIDE; |
| 19 virtual bool drawsContent() const OVERRIDE; | 39 virtual bool drawsContent() const OVERRIDE; |
| 20 | 40 |
| 41 void setSettings(const HeadsUpDisplayLayerSettings& settings) { m_settings = settings; } | |
| 42 const HeadsUpDisplayLayerSettings& settings() const { return m_settings; } | |
| 43 | |
| 21 void setFontAtlas(scoped_ptr<FontAtlas>); | 44 void setFontAtlas(scoped_ptr<FontAtlas>); |
| 22 void setShowFPSCounter(bool); | |
| 23 | 45 |
| 24 virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE; | 46 virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE; |
| 25 virtual void pushPropertiesTo(LayerImpl*) OVERRIDE; | 47 virtual void pushPropertiesTo(LayerImpl*) OVERRIDE; |
| 26 | 48 |
| 27 protected: | 49 protected: |
| 28 HeadsUpDisplayLayer(); | 50 HeadsUpDisplayLayer(); |
| 29 | 51 |
| 30 private: | 52 private: |
| 31 virtual ~HeadsUpDisplayLayer(); | 53 virtual ~HeadsUpDisplayLayer(); |
| 32 | 54 |
| 55 HeadsUpDisplayLayerSettings m_settings; | |
| 33 scoped_ptr<FontAtlas> m_fontAtlas; | 56 scoped_ptr<FontAtlas> m_fontAtlas; |
| 34 bool m_showFPSCounter; | |
| 35 }; | 57 }; |
| 36 | 58 |
| 37 } // namespace cc | 59 } // namespace cc |
| 38 | 60 |
| 39 #endif // CC_HEADS_UP_DISPLAY_LAYER_H_ | 61 #endif // CC_HEADS_UP_DISPLAY_LAYER_H_ |
| OLD | NEW |