OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 CONTENT_COMMON_GPU_GPU_COMMAND_BUFFER_STUB_H_ | 5 #ifndef CONTENT_COMMON_GPU_GPU_COMMAND_BUFFER_STUB_H_ |
6 #define CONTENT_COMMON_GPU_GPU_COMMAND_BUFFER_STUB_H_ | 6 #define CONTENT_COMMON_GPU_GPU_COMMAND_BUFFER_STUB_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #if defined(ENABLE_GPU) | 9 #if defined(ENABLE_GPU) |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/id_map.h" | 14 #include "base/id_map.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "content/common/content_export.h" |
16 #include "content/common/gpu/media/gpu_video_decode_accelerator.h" | 17 #include "content/common/gpu/media/gpu_video_decode_accelerator.h" |
17 #include "gpu/command_buffer/common/constants.h" | 18 #include "gpu/command_buffer/common/constants.h" |
18 #include "gpu/command_buffer/service/command_buffer_service.h" | 19 #include "gpu/command_buffer/service/command_buffer_service.h" |
19 #include "gpu/command_buffer/service/context_group.h" | 20 #include "gpu/command_buffer/service/context_group.h" |
20 #include "gpu/command_buffer/service/gpu_scheduler.h" | 21 #include "gpu/command_buffer/service/gpu_scheduler.h" |
21 #include "ipc/ipc_channel.h" | 22 #include "ipc/ipc_channel.h" |
22 #include "ipc/ipc_message.h" | 23 #include "ipc/ipc_message.h" |
23 #include "ui/gfx/gl/gl_context.h" | 24 #include "ui/gfx/gl/gl_context.h" |
24 #include "ui/gfx/gl/gl_surface.h" | 25 #include "ui/gfx/gl/gl_surface.h" |
25 #include "ui/gfx/gl/gpu_preference.h" | 26 #include "ui/gfx/gl/gpu_preference.h" |
26 #include "ui/gfx/native_widget_types.h" | 27 #include "ui/gfx/native_widget_types.h" |
27 #include "ui/gfx/size.h" | 28 #include "ui/gfx/size.h" |
28 #include "ui/gfx/surface/transport_dib.h" | 29 #include "ui/gfx/surface/transport_dib.h" |
29 | 30 |
30 #if defined(OS_MACOSX) | 31 #if defined(OS_MACOSX) |
31 #include "ui/gfx/surface/accelerated_surface_mac.h" | 32 #include "ui/gfx/surface/accelerated_surface_mac.h" |
32 #endif | 33 #endif |
33 | 34 |
34 class GpuChannel; | 35 class GpuChannel; |
| 36 class GpuMemoryAllocation; |
35 class GpuWatchdog; | 37 class GpuWatchdog; |
36 | 38 |
| 39 // This Base class is used to expose methods of GpuCommandBufferStub used for |
| 40 // testability. |
| 41 class CONTENT_EXPORT GpuCommandBufferStubBase { |
| 42 public: |
| 43 struct CONTENT_EXPORT SurfaceState { |
| 44 int32 surface_id; |
| 45 bool visible; |
| 46 base::TimeTicks last_used_time; |
| 47 |
| 48 SurfaceState(int32 surface_id, |
| 49 bool visible, |
| 50 base::TimeTicks last_used_time); |
| 51 }; |
| 52 |
| 53 public: |
| 54 virtual ~GpuCommandBufferStubBase() {} |
| 55 |
| 56 // Will not have surface state if this is an offscreen commandbuffer. |
| 57 virtual bool has_surface_state() = 0; |
| 58 virtual const SurfaceState& surface_state() = 0; |
| 59 |
| 60 virtual void SendMemoryAllocationToProxy( |
| 61 const GpuMemoryAllocation& allocation) = 0; |
| 62 }; |
| 63 |
37 class GpuCommandBufferStub | 64 class GpuCommandBufferStub |
38 : public IPC::Channel::Listener, | 65 : public IPC::Channel::Listener, |
39 public IPC::Message::Sender, | 66 public IPC::Message::Sender, |
| 67 public GpuCommandBufferStubBase, |
40 public base::SupportsWeakPtr<GpuCommandBufferStub> { | 68 public base::SupportsWeakPtr<GpuCommandBufferStub> { |
41 public: | 69 public: |
42 GpuCommandBufferStub( | 70 GpuCommandBufferStub( |
43 GpuChannel* channel, | 71 GpuChannel* channel, |
44 GpuCommandBufferStub* share_group, | 72 GpuCommandBufferStub* share_group, |
45 gfx::PluginWindowHandle handle, | 73 gfx::PluginWindowHandle handle, |
46 const gfx::Size& size, | 74 const gfx::Size& size, |
47 const gpu::gles2::DisallowedFeatures& disallowed_features, | 75 const gpu::gles2::DisallowedFeatures& disallowed_features, |
48 const std::string& allowed_extensions, | 76 const std::string& allowed_extensions, |
49 const std::vector<int32>& attribs, | 77 const std::vector<int32>& attribs, |
50 gfx::GpuPreference gpu_preference, | 78 gfx::GpuPreference gpu_preference, |
51 int32 route_id, | 79 int32 route_id, |
52 int32 surface_id, | 80 int32 surface_id, |
53 GpuWatchdog* watchdog, | 81 GpuWatchdog* watchdog, |
54 bool software); | 82 bool software); |
55 | 83 |
56 virtual ~GpuCommandBufferStub(); | 84 virtual ~GpuCommandBufferStub(); |
57 | 85 |
58 // IPC::Channel::Listener implementation: | 86 // IPC::Channel::Listener implementation: |
59 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 87 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
60 | 88 |
61 // IPC::Message::Sender implementation: | 89 // IPC::Message::Sender implementation: |
62 virtual bool Send(IPC::Message* msg) OVERRIDE; | 90 virtual bool Send(IPC::Message* msg) OVERRIDE; |
63 | 91 |
| 92 // GpuCommandBufferStubBase implementation: |
| 93 virtual bool has_surface_state() OVERRIDE; |
| 94 virtual const GpuCommandBufferStubBase::SurfaceState& surface_state() |
| 95 OVERRIDE; |
| 96 |
| 97 // Sends memory allocation limits to render process. |
| 98 virtual void SendMemoryAllocationToProxy( |
| 99 const GpuMemoryAllocation& allocation) OVERRIDE; |
| 100 |
64 // Whether this command buffer can currently handle IPC messages. | 101 // Whether this command buffer can currently handle IPC messages. |
65 bool IsScheduled(); | 102 bool IsScheduled(); |
66 | 103 |
67 // Whether this command buffer needs to be polled again in the future. | 104 // Whether this command buffer needs to be polled again in the future. |
68 bool HasMoreWork(); | 105 bool HasMoreWork(); |
69 | 106 |
70 // Set the swap interval according to the command line. | 107 // Set the swap interval according to the command line. |
71 void SetSwapInterval(); | 108 void SetSwapInterval(); |
72 | 109 |
73 gpu::gles2::GLES2Decoder* decoder() const { return decoder_.get(); } | 110 gpu::gles2::GLES2Decoder* decoder() const { return decoder_.get(); } |
74 gpu::GpuScheduler* scheduler() const { return scheduler_.get(); } | 111 gpu::GpuScheduler* scheduler() const { return scheduler_.get(); } |
75 | 112 |
76 // Identifies the target surface. | 113 // Identifies the target surface. |
77 int32 surface_id() const { return surface_id_; } | 114 int32 surface_id() const { |
| 115 return (surface_state_.get()) ? surface_state_->surface_id : 0; |
| 116 } |
78 | 117 |
79 // Identifies the various GpuCommandBufferStubs in the GPU process belonging | 118 // Identifies the various GpuCommandBufferStubs in the GPU process belonging |
80 // to the same renderer process. | 119 // to the same renderer process. |
81 int32 route_id() const { return route_id_; } | 120 int32 route_id() const { return route_id_; } |
82 | 121 |
83 gfx::GpuPreference gpu_preference() { return gpu_preference_; } | 122 gfx::GpuPreference gpu_preference() { return gpu_preference_; } |
84 | 123 |
85 // Sends a message to the console. | 124 // Sends a message to the console. |
86 void SendConsoleMessage(int32 id, const std::string& message); | 125 void SendConsoleMessage(int32 id, const std::string& message); |
87 | 126 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 173 |
135 gfx::PluginWindowHandle handle_; | 174 gfx::PluginWindowHandle handle_; |
136 gfx::Size initial_size_; | 175 gfx::Size initial_size_; |
137 gpu::gles2::DisallowedFeatures disallowed_features_; | 176 gpu::gles2::DisallowedFeatures disallowed_features_; |
138 std::string allowed_extensions_; | 177 std::string allowed_extensions_; |
139 std::vector<int32> requested_attribs_; | 178 std::vector<int32> requested_attribs_; |
140 gfx::GpuPreference gpu_preference_; | 179 gfx::GpuPreference gpu_preference_; |
141 int32 route_id_; | 180 int32 route_id_; |
142 bool software_; | 181 bool software_; |
143 uint32 last_flush_count_; | 182 uint32 last_flush_count_; |
144 | 183 scoped_ptr<GpuCommandBufferStubBase::SurfaceState> surface_state_; |
145 // Identifies the window for the rendering results on the browser side. | |
146 int32 surface_id_; | |
147 | 184 |
148 scoped_ptr<gpu::CommandBufferService> command_buffer_; | 185 scoped_ptr<gpu::CommandBufferService> command_buffer_; |
149 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; | 186 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; |
150 scoped_ptr<gpu::GpuScheduler> scheduler_; | 187 scoped_ptr<gpu::GpuScheduler> scheduler_; |
151 scoped_refptr<gfx::GLContext> context_; | 188 scoped_refptr<gfx::GLContext> context_; |
152 scoped_refptr<gfx::GLSurface> surface_; | 189 scoped_refptr<gfx::GLSurface> surface_; |
153 | 190 |
154 // SetParent may be called before Initialize, in which case we need to keep | 191 // SetParent may be called before Initialize, in which case we need to keep |
155 // around the parent stub, so that Initialize can set the parent correctly. | 192 // around the parent stub, so that Initialize can set the parent correctly. |
156 base::WeakPtr<GpuCommandBufferStub> parent_stub_for_initialization_; | 193 base::WeakPtr<GpuCommandBufferStub> parent_stub_for_initialization_; |
157 uint32 parent_texture_for_initialization_; | 194 uint32 parent_texture_for_initialization_; |
158 | 195 |
159 GpuWatchdog* watchdog_; | 196 GpuWatchdog* watchdog_; |
160 | 197 |
161 // Zero or more video decoders owned by this stub, keyed by their | 198 // Zero or more video decoders owned by this stub, keyed by their |
162 // decoder_route_id. | 199 // decoder_route_id. |
163 IDMap<GpuVideoDecodeAccelerator, IDMapOwnPointer> video_decoders_; | 200 IDMap<GpuVideoDecodeAccelerator, IDMapOwnPointer> video_decoders_; |
164 | 201 |
165 DISALLOW_COPY_AND_ASSIGN(GpuCommandBufferStub); | 202 DISALLOW_COPY_AND_ASSIGN(GpuCommandBufferStub); |
166 }; | 203 }; |
167 | 204 |
168 #endif // defined(ENABLE_GPU) | 205 #endif // defined(ENABLE_GPU) |
169 | 206 |
170 #endif // CONTENT_COMMON_GPU_GPU_COMMAND_BUFFER_STUB_H_ | 207 #endif // CONTENT_COMMON_GPU_GPU_COMMAND_BUFFER_STUB_H_ |
OLD | NEW |