| 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 #include "content/renderer/pepper/ppb_graphics_3d_impl.h" | 5 #include "content/renderer/pepper/ppb_graphics_3d_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 21 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
| 22 #include "gpu/ipc/client/command_buffer_proxy_impl.h" | 22 #include "gpu/ipc/client/command_buffer_proxy_impl.h" |
| 23 #include "gpu/ipc/client/gpu_channel_host.h" | 23 #include "gpu/ipc/client/gpu_channel_host.h" |
| 24 #include "ppapi/c/ppp_graphics_3d.h" | 24 #include "ppapi/c/ppp_graphics_3d.h" |
| 25 #include "ppapi/thunk/enter.h" | 25 #include "ppapi/thunk/enter.h" |
| 26 #include "third_party/WebKit/public/platform/WebString.h" | 26 #include "third_party/WebKit/public/platform/WebString.h" |
| 27 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 27 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 28 #include "third_party/WebKit/public/web/WebDocument.h" | 28 #include "third_party/WebKit/public/web/WebDocument.h" |
| 29 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 29 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
| 30 #include "third_party/WebKit/public/web/WebPluginContainer.h" | 30 #include "third_party/WebKit/public/web/WebPluginContainer.h" |
| 31 #include "third_party/khronos/GLES2/gl2.h" | |
| 32 | 31 |
| 33 using ppapi::thunk::EnterResourceNoLock; | 32 using ppapi::thunk::EnterResourceNoLock; |
| 34 using ppapi::thunk::PPB_Graphics3D_API; | 33 using ppapi::thunk::PPB_Graphics3D_API; |
| 35 using blink::WebConsoleMessage; | 34 using blink::WebConsoleMessage; |
| 36 using blink::WebLocalFrame; | 35 using blink::WebLocalFrame; |
| 37 using blink::WebPluginContainer; | 36 using blink::WebPluginContainer; |
| 38 using blink::WebString; | 37 using blink::WebString; |
| 39 | 38 |
| 40 namespace content { | 39 namespace content { |
| 41 | 40 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 int32_t start, | 107 int32_t start, |
| 109 int32_t end) { | 108 int32_t end) { |
| 110 GetCommandBuffer()->WaitForGetOffsetInRange(start, end); | 109 GetCommandBuffer()->WaitForGetOffsetInRange(start, end); |
| 111 return GetCommandBuffer()->GetLastState(); | 110 return GetCommandBuffer()->GetLastState(); |
| 112 } | 111 } |
| 113 | 112 |
| 114 void PPB_Graphics3D_Impl::EnsureWorkVisible() { | 113 void PPB_Graphics3D_Impl::EnsureWorkVisible() { |
| 115 command_buffer_->EnsureWorkVisible(); | 114 command_buffer_->EnsureWorkVisible(); |
| 116 } | 115 } |
| 117 | 116 |
| 118 void PPB_Graphics3D_Impl::TakeFrontBuffer() { | |
| 119 if (!taken_front_buffer_.IsZero()) { | |
| 120 DLOG(ERROR) | |
| 121 << "TakeFrontBuffer should only be called once before DoSwapBuffers"; | |
| 122 return; | |
| 123 } | |
| 124 taken_front_buffer_ = GenerateMailbox(); | |
| 125 command_buffer_->TakeFrontBuffer(taken_front_buffer_); | |
| 126 } | |
| 127 | |
| 128 void PPB_Graphics3D_Impl::ReturnFrontBuffer(const gpu::Mailbox& mailbox, | |
| 129 const gpu::SyncToken& sync_token, | |
| 130 bool is_lost) { | |
| 131 command_buffer_->ReturnFrontBuffer(mailbox, sync_token, is_lost); | |
| 132 } | |
| 133 | |
| 134 bool PPB_Graphics3D_Impl::BindToInstance(bool bind) { | 117 bool PPB_Graphics3D_Impl::BindToInstance(bool bind) { |
| 135 bound_to_instance_ = bind; | 118 bound_to_instance_ = bind; |
| 136 return true; | 119 return true; |
| 137 } | 120 } |
| 138 | 121 |
| 139 bool PPB_Graphics3D_Impl::IsOpaque() { return !has_alpha_; } | 122 bool PPB_Graphics3D_Impl::IsOpaque() { return !has_alpha_; } |
| 140 | 123 |
| 141 void PPB_Graphics3D_Impl::ViewInitiatedPaint() { | 124 void PPB_Graphics3D_Impl::ViewInitiatedPaint() { |
| 142 commit_pending_ = false; | 125 commit_pending_ = false; |
| 143 | 126 |
| 144 if (HasPendingSwap()) | 127 if (HasPendingSwap()) |
| 145 SwapBuffersACK(PP_OK); | 128 SwapBuffersACK(PP_OK); |
| 146 } | 129 } |
| 147 | 130 |
| 148 gpu::CommandBufferProxyImpl* PPB_Graphics3D_Impl::GetCommandBufferProxy() { | 131 gpu::CommandBufferProxyImpl* PPB_Graphics3D_Impl::GetCommandBufferProxy() { |
| 149 DCHECK(command_buffer_); | 132 DCHECK(command_buffer_); |
| 150 return command_buffer_.get(); | 133 return command_buffer_.get(); |
| 151 } | 134 } |
| 152 | 135 |
| 153 gpu::CommandBuffer* PPB_Graphics3D_Impl::GetCommandBuffer() { | 136 gpu::CommandBuffer* PPB_Graphics3D_Impl::GetCommandBuffer() { |
| 154 return command_buffer_.get(); | 137 return command_buffer_.get(); |
| 155 } | 138 } |
| 156 | 139 |
| 157 gpu::GpuControl* PPB_Graphics3D_Impl::GetGpuControl() { | 140 gpu::GpuControl* PPB_Graphics3D_Impl::GetGpuControl() { |
| 158 return command_buffer_.get(); | 141 return command_buffer_.get(); |
| 159 } | 142 } |
| 160 | 143 |
| 161 int32_t PPB_Graphics3D_Impl::DoSwapBuffers(const gpu::SyncToken& sync_token) { | 144 int32_t PPB_Graphics3D_Impl::DoSwapBuffers(const gpu::SyncToken& sync_token) { |
| 162 DCHECK(command_buffer_); | 145 DCHECK(command_buffer_); |
| 163 if (taken_front_buffer_.IsZero()) { | 146 if (sync_token.HasData()) |
| 164 DLOG(ERROR) << "TakeFrontBuffer should be called before DoSwapBuffers"; | 147 sync_token_ = sync_token; |
| 165 return PP_ERROR_FAILED; | |
| 166 } | |
| 167 | 148 |
| 168 if (bound_to_instance_) { | 149 if (bound_to_instance_) { |
| 169 // If we are bound to the instance, we need to ask the compositor | 150 // If we are bound to the instance, we need to ask the compositor |
| 170 // to commit our backing texture so that the graphics appears on the page. | 151 // to commit our backing texture so that the graphics appears on the page. |
| 171 // When the backing texture will be committed we get notified via | 152 // When the backing texture will be committed we get notified via |
| 172 // ViewFlushedPaint(). | 153 // ViewFlushedPaint(). |
| 173 // | 154 // |
| 174 // Don't need to check for NULL from GetPluginInstance since when we're | 155 // Don't need to check for NULL from GetPluginInstance since when we're |
| 175 // bound, we know our instance is valid. | 156 // bound, we know our instance is valid. |
| 176 cc::TextureMailbox texture_mailbox(taken_front_buffer_, sync_token, | 157 HostGlobals::Get()->GetInstance(pp_instance())->CommitBackingTexture(); |
| 177 GL_TEXTURE_2D); | |
| 178 taken_front_buffer_.SetZero(); | |
| 179 HostGlobals::Get() | |
| 180 ->GetInstance(pp_instance()) | |
| 181 ->CommitTextureMailbox(texture_mailbox); | |
| 182 commit_pending_ = true; | 158 commit_pending_ = true; |
| 183 } else { | 159 } else { |
| 184 // Wait for the command to complete on the GPU to allow for throttling. | 160 // Wait for the command to complete on the GPU to allow for throttling. |
| 185 command_buffer_->SignalSyncToken( | 161 command_buffer_->SignalSyncToken( |
| 186 sync_token, base::Bind(&PPB_Graphics3D_Impl::OnSwapBuffers, | 162 sync_token_, |
| 187 weak_ptr_factory_.GetWeakPtr())); | 163 base::Bind(&PPB_Graphics3D_Impl::OnSwapBuffers, |
| 164 weak_ptr_factory_.GetWeakPtr())); |
| 188 } | 165 } |
| 189 | 166 |
| 190 return PP_OK_COMPLETIONPENDING; | 167 return PP_OK_COMPLETIONPENDING; |
| 191 } | 168 } |
| 192 | 169 |
| 193 bool PPB_Graphics3D_Impl::InitRaw(PPB_Graphics3D_API* share_context, | 170 bool PPB_Graphics3D_Impl::InitRaw(PPB_Graphics3D_API* share_context, |
| 194 const int32_t* attrib_list, | 171 const int32_t* attrib_list, |
| 195 gpu::Capabilities* capabilities, | 172 gpu::Capabilities* capabilities, |
| 196 base::SharedMemoryHandle* shared_state_handle, | 173 base::SharedMemoryHandle* shared_state_handle, |
| 197 gpu::CommandBufferId* command_buffer_id) { | 174 gpu::CommandBufferId* command_buffer_id) { |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 | 256 |
| 280 command_buffer_->SetGpuControlClient(this); | 257 command_buffer_->SetGpuControlClient(this); |
| 281 | 258 |
| 282 if (shared_state_handle) | 259 if (shared_state_handle) |
| 283 *shared_state_handle = command_buffer_->GetSharedStateHandle(); | 260 *shared_state_handle = command_buffer_->GetSharedStateHandle(); |
| 284 if (capabilities) | 261 if (capabilities) |
| 285 *capabilities = command_buffer_->GetCapabilities(); | 262 *capabilities = command_buffer_->GetCapabilities(); |
| 286 if (command_buffer_id) | 263 if (command_buffer_id) |
| 287 *command_buffer_id = command_buffer_->GetCommandBufferID(); | 264 *command_buffer_id = command_buffer_->GetCommandBufferID(); |
| 288 | 265 |
| 266 mailbox_ = gpu::Mailbox::Generate(); |
| 267 if (!command_buffer_->ProduceFrontBuffer(mailbox_)) |
| 268 return false; |
| 269 |
| 289 return true; | 270 return true; |
| 290 } | 271 } |
| 291 | 272 |
| 292 void PPB_Graphics3D_Impl::OnGpuControlErrorMessage(const char* message, | 273 void PPB_Graphics3D_Impl::OnGpuControlErrorMessage(const char* message, |
| 293 int32_t id) { | 274 int32_t id) { |
| 294 if (!bound_to_instance_) | 275 if (!bound_to_instance_) |
| 295 return; | 276 return; |
| 296 WebPluginContainer* container = | 277 WebPluginContainer* container = |
| 297 HostGlobals::Get()->GetInstance(pp_instance())->container(); | 278 HostGlobals::Get()->GetInstance(pp_instance())->container(); |
| 298 if (!container) | 279 if (!container) |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 const PPP_Graphics3D* ppp_graphics_3d = static_cast<const PPP_Graphics3D*>( | 337 const PPP_Graphics3D* ppp_graphics_3d = static_cast<const PPP_Graphics3D*>( |
| 357 instance->module()->GetPluginInterface(PPP_GRAPHICS_3D_INTERFACE)); | 338 instance->module()->GetPluginInterface(PPP_GRAPHICS_3D_INTERFACE)); |
| 358 // We have to check *again* that the instance exists, because it could have | 339 // We have to check *again* that the instance exists, because it could have |
| 359 // been deleted during GetPluginInterface(). Even the PluginModule could be | 340 // been deleted during GetPluginInterface(). Even the PluginModule could be |
| 360 // deleted, but in that case, the instance should also be gone, so the | 341 // deleted, but in that case, the instance should also be gone, so the |
| 361 // GetInstance check covers both cases. | 342 // GetInstance check covers both cases. |
| 362 if (ppp_graphics_3d && HostGlobals::Get()->GetInstance(this_pp_instance)) | 343 if (ppp_graphics_3d && HostGlobals::Get()->GetInstance(this_pp_instance)) |
| 363 ppp_graphics_3d->Graphics3DContextLost(this_pp_instance); | 344 ppp_graphics_3d->Graphics3DContextLost(this_pp_instance); |
| 364 } | 345 } |
| 365 | 346 |
| 366 gpu::Mailbox PPB_Graphics3D_Impl::GenerateMailbox() { | |
| 367 if (!mailboxes_to_reuse_.empty()) { | |
| 368 gpu::Mailbox mailbox = mailboxes_to_reuse_.back(); | |
| 369 mailboxes_to_reuse_.pop_back(); | |
| 370 return mailbox; | |
| 371 } | |
| 372 | |
| 373 return gpu::Mailbox::Generate(); | |
| 374 } | |
| 375 | |
| 376 } // namespace content | 347 } // namespace content |
| OLD | NEW |