| 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_SURFACES_DISPLAY_H_ | 5 #ifndef CC_SURFACES_DISPLAY_H_ |
| 6 #define CC_SURFACES_DISPLAY_H_ | 6 #define CC_SURFACES_DISPLAY_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "cc/output/output_surface_client.h" | 11 #include "cc/output/output_surface_client.h" |
| 12 #include "cc/output/renderer.h" | 12 #include "cc/output/renderer.h" |
| 13 #include "cc/resources/returned_resource.h" | 13 #include "cc/resources/returned_resource.h" |
| 14 #include "cc/surfaces/display_scheduler.h" |
| 14 #include "cc/surfaces/surface_aggregator.h" | 15 #include "cc/surfaces/surface_aggregator.h" |
| 15 #include "cc/surfaces/surface_id.h" | 16 #include "cc/surfaces/surface_id.h" |
| 16 #include "cc/surfaces/surface_manager.h" | 17 #include "cc/surfaces/surface_manager.h" |
| 17 #include "cc/surfaces/surfaces_export.h" | 18 #include "cc/surfaces/surfaces_export.h" |
| 18 #include "ui/events/latency_info.h" | 19 #include "ui/events/latency_info.h" |
| 19 | 20 |
| 20 namespace gpu { | 21 namespace gpu { |
| 21 class GpuMemoryBufferManager; | 22 class GpuMemoryBufferManager; |
| 22 } | 23 } |
| 23 | 24 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 36 class SharedBitmapManager; | 37 class SharedBitmapManager; |
| 37 class Surface; | 38 class Surface; |
| 38 class SurfaceAggregator; | 39 class SurfaceAggregator; |
| 39 class SurfaceIdAllocator; | 40 class SurfaceIdAllocator; |
| 40 class SurfaceFactory; | 41 class SurfaceFactory; |
| 41 class TextureMailboxDeleter; | 42 class TextureMailboxDeleter; |
| 42 | 43 |
| 43 // A Display produces a surface that can be used to draw to a physical display | 44 // A Display produces a surface that can be used to draw to a physical display |
| 44 // (OutputSurface). The client is responsible for creating and sizing the | 45 // (OutputSurface). The client is responsible for creating and sizing the |
| 45 // surface IDs used to draw into the display and deciding when to draw. | 46 // surface IDs used to draw into the display and deciding when to draw. |
| 46 class CC_SURFACES_EXPORT Display : public OutputSurfaceClient, | 47 class CC_SURFACES_EXPORT Display : public DisplaySchedulerClient, |
| 48 public OutputSurfaceClient, |
| 47 public RendererClient, | 49 public RendererClient, |
| 48 public SurfaceDamageObserver { | 50 public SurfaceDamageObserver { |
| 49 public: | 51 public: |
| 50 Display(DisplayClient* client, | 52 Display(DisplayClient* client, |
| 51 SurfaceManager* manager, | 53 SurfaceManager* manager, |
| 52 SharedBitmapManager* bitmap_manager, | 54 SharedBitmapManager* bitmap_manager, |
| 53 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, | 55 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, |
| 54 const RendererSettings& settings); | 56 const RendererSettings& settings); |
| 55 ~Display() override; | 57 ~Display() override; |
| 56 | 58 |
| 57 bool Initialize(scoped_ptr<OutputSurface> output_surface); | 59 bool Initialize(scoped_ptr<OutputSurface> output_surface, |
| 60 DisplayScheduler* scheduler); |
| 58 | 61 |
| 59 // device_scale_factor is used to communicate to the external window system | 62 // device_scale_factor is used to communicate to the external window system |
| 60 // what scale this was rendered at. | 63 // what scale this was rendered at. |
| 61 void SetSurfaceId(SurfaceId id, float device_scale_factor); | 64 void SetSurfaceId(SurfaceId id, float device_scale_factor); |
| 62 void Resize(const gfx::Size& new_size); | 65 void Resize(const gfx::Size& new_size); |
| 63 bool Draw(); | |
| 64 | 66 |
| 65 SurfaceId CurrentSurfaceId(); | 67 SurfaceId CurrentSurfaceId(); |
| 66 int GetMaxFramesPending(); | 68 |
| 69 // DisplaySchedulerClient implementation. |
| 70 bool DrawAndSwap() override; |
| 67 | 71 |
| 68 // OutputSurfaceClient implementation. | 72 // OutputSurfaceClient implementation. |
| 69 void CommitVSyncParameters(base::TimeTicks timebase, | 73 void CommitVSyncParameters(base::TimeTicks timebase, |
| 70 base::TimeDelta interval) override; | 74 base::TimeDelta interval) override; |
| 71 void SetNeedsRedrawRect(const gfx::Rect& damage_rect) override; | 75 void SetNeedsRedrawRect(const gfx::Rect& damage_rect) override; |
| 72 void DidSwapBuffers() override; | 76 void DidSwapBuffers() override; |
| 73 void DidSwapBuffersComplete() override; | 77 void DidSwapBuffersComplete() override; |
| 74 void ReclaimResources(const CompositorFrameAck* ack) override; | 78 void ReclaimResources(const CompositorFrameAck* ack) override; |
| 75 void DidLoseOutputSurface() override; | 79 void DidLoseOutputSurface() override; |
| 76 void SetExternalDrawConstraints( | 80 void SetExternalDrawConstraints( |
| 77 const gfx::Transform& transform, | 81 const gfx::Transform& transform, |
| 78 const gfx::Rect& viewport, | 82 const gfx::Rect& viewport, |
| 79 const gfx::Rect& clip, | 83 const gfx::Rect& clip, |
| 80 const gfx::Rect& viewport_rect_for_tile_priority, | 84 const gfx::Rect& viewport_rect_for_tile_priority, |
| 81 const gfx::Transform& transform_for_tile_priority, | 85 const gfx::Transform& transform_for_tile_priority, |
| 82 bool resourceless_software_draw) override; | 86 bool resourceless_software_draw) override; |
| 83 void SetMemoryPolicy(const ManagedMemoryPolicy& policy) override; | 87 void SetMemoryPolicy(const ManagedMemoryPolicy& policy) override; |
| 84 void SetTreeActivationCallback(const base::Closure& callback) override; | 88 void SetTreeActivationCallback(const base::Closure& callback) override; |
| 85 void OnDraw() override; | 89 void OnDraw() override; |
| 86 | 90 |
| 87 // RendererClient implementation. | 91 // RendererClient implementation. |
| 88 void SetFullRootLayerDamage() override; | 92 void SetFullRootLayerDamage() override; |
| 89 | 93 |
| 90 // SurfaceDamageObserver implementation. | 94 // SurfaceDamageObserver implementation. |
| 91 void OnSurfaceDamaged(SurfaceId surface, bool* changed) override; | 95 void OnSurfaceDamaged(SurfaceId surface, bool* changed) override; |
| 92 | 96 |
| 93 private: | 97 private: |
| 94 void InitializeRenderer(); | 98 void InitializeRenderer(); |
| 99 void UpdateRootSurfaceResourcesLocked(); |
| 95 | 100 |
| 96 DisplayClient* client_; | 101 DisplayClient* client_; |
| 97 SurfaceManager* manager_; | 102 SurfaceManager* manager_; |
| 98 SharedBitmapManager* bitmap_manager_; | 103 SharedBitmapManager* bitmap_manager_; |
| 99 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_; | 104 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_; |
| 100 RendererSettings settings_; | 105 RendererSettings settings_; |
| 101 SurfaceId current_surface_id_; | 106 SurfaceId current_surface_id_; |
| 102 gfx::Size current_surface_size_; | 107 gfx::Size current_surface_size_; |
| 103 float device_scale_factor_; | 108 float device_scale_factor_; |
| 104 scoped_ptr<OutputSurface> output_surface_; | 109 scoped_ptr<OutputSurface> output_surface_; |
| 110 DisplayScheduler* scheduler_; |
| 105 scoped_ptr<ResourceProvider> resource_provider_; | 111 scoped_ptr<ResourceProvider> resource_provider_; |
| 106 scoped_ptr<SurfaceAggregator> aggregator_; | 112 scoped_ptr<SurfaceAggregator> aggregator_; |
| 107 scoped_ptr<DirectRenderer> renderer_; | 113 scoped_ptr<DirectRenderer> renderer_; |
| 108 scoped_ptr<BlockingTaskRunner> blocking_main_thread_task_runner_; | 114 scoped_ptr<BlockingTaskRunner> blocking_main_thread_task_runner_; |
| 109 scoped_ptr<TextureMailboxDeleter> texture_mailbox_deleter_; | 115 scoped_ptr<TextureMailboxDeleter> texture_mailbox_deleter_; |
| 110 std::vector<ui::LatencyInfo> stored_latency_info_; | 116 std::vector<ui::LatencyInfo> stored_latency_info_; |
| 111 | 117 |
| 112 DISALLOW_COPY_AND_ASSIGN(Display); | 118 DISALLOW_COPY_AND_ASSIGN(Display); |
| 113 }; | 119 }; |
| 114 | 120 |
| 115 } // namespace cc | 121 } // namespace cc |
| 116 | 122 |
| 117 #endif // CC_SURFACES_DISPLAY_H_ | 123 #endif // CC_SURFACES_DISPLAY_H_ |
| OLD | NEW |