Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(926)

Side by Side Diff: content/renderer/pepper/ppb_graphics_3d_impl.cc

Issue 1943513002: [Reland 1] Pepper takes ownership of a mailbox before passing it to the texture layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from sunnyps and piman. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
21 #include "gpu/ipc/client/command_buffer_proxy_impl.h" 21 #include "gpu/ipc/client/command_buffer_proxy_impl.h"
22 #include "gpu/ipc/client/gpu_channel_host.h" 22 #include "gpu/ipc/client/gpu_channel_host.h"
23 #include "ppapi/c/ppp_graphics_3d.h" 23 #include "ppapi/c/ppp_graphics_3d.h"
24 #include "ppapi/thunk/enter.h" 24 #include "ppapi/thunk/enter.h"
25 #include "third_party/WebKit/public/platform/WebString.h" 25 #include "third_party/WebKit/public/platform/WebString.h"
26 #include "third_party/WebKit/public/web/WebConsoleMessage.h" 26 #include "third_party/WebKit/public/web/WebConsoleMessage.h"
27 #include "third_party/WebKit/public/web/WebDocument.h" 27 #include "third_party/WebKit/public/web/WebDocument.h"
28 #include "third_party/WebKit/public/web/WebElement.h" 28 #include "third_party/WebKit/public/web/WebElement.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"
31 32
32 using ppapi::thunk::EnterResourceNoLock; 33 using ppapi::thunk::EnterResourceNoLock;
33 using ppapi::thunk::PPB_Graphics3D_API; 34 using ppapi::thunk::PPB_Graphics3D_API;
34 using blink::WebConsoleMessage; 35 using blink::WebConsoleMessage;
35 using blink::WebLocalFrame; 36 using blink::WebLocalFrame;
36 using blink::WebPluginContainer; 37 using blink::WebPluginContainer;
37 using blink::WebString; 38 using blink::WebString;
38 39
39 namespace content { 40 namespace content {
40 41
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 int32_t start, 108 int32_t start,
108 int32_t end) { 109 int32_t end) {
109 GetCommandBuffer()->WaitForGetOffsetInRange(start, end); 110 GetCommandBuffer()->WaitForGetOffsetInRange(start, end);
110 return GetCommandBuffer()->GetLastState(); 111 return GetCommandBuffer()->GetLastState();
111 } 112 }
112 113
113 void PPB_Graphics3D_Impl::EnsureWorkVisible() { 114 void PPB_Graphics3D_Impl::EnsureWorkVisible() {
114 command_buffer_->EnsureWorkVisible(); 115 command_buffer_->EnsureWorkVisible();
115 } 116 }
116 117
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
117 bool PPB_Graphics3D_Impl::BindToInstance(bool bind) { 134 bool PPB_Graphics3D_Impl::BindToInstance(bool bind) {
118 bound_to_instance_ = bind; 135 bound_to_instance_ = bind;
119 return true; 136 return true;
120 } 137 }
121 138
122 bool PPB_Graphics3D_Impl::IsOpaque() { return !has_alpha_; } 139 bool PPB_Graphics3D_Impl::IsOpaque() { return !has_alpha_; }
123 140
124 void PPB_Graphics3D_Impl::ViewInitiatedPaint() { 141 void PPB_Graphics3D_Impl::ViewInitiatedPaint() {
125 commit_pending_ = false; 142 commit_pending_ = false;
126 143
127 if (HasPendingSwap()) 144 if (HasPendingSwap())
128 SwapBuffersACK(PP_OK); 145 SwapBuffersACK(PP_OK);
129 } 146 }
130 147
131 gpu::CommandBufferProxyImpl* PPB_Graphics3D_Impl::GetCommandBufferProxy() { 148 gpu::CommandBufferProxyImpl* PPB_Graphics3D_Impl::GetCommandBufferProxy() {
132 DCHECK(command_buffer_); 149 DCHECK(command_buffer_);
133 return command_buffer_.get(); 150 return command_buffer_.get();
134 } 151 }
135 152
136 gpu::CommandBuffer* PPB_Graphics3D_Impl::GetCommandBuffer() { 153 gpu::CommandBuffer* PPB_Graphics3D_Impl::GetCommandBuffer() {
137 return command_buffer_.get(); 154 return command_buffer_.get();
138 } 155 }
139 156
140 gpu::GpuControl* PPB_Graphics3D_Impl::GetGpuControl() { 157 gpu::GpuControl* PPB_Graphics3D_Impl::GetGpuControl() {
141 return command_buffer_.get(); 158 return command_buffer_.get();
142 } 159 }
143 160
144 int32_t PPB_Graphics3D_Impl::DoSwapBuffers(const gpu::SyncToken& sync_token) { 161 int32_t PPB_Graphics3D_Impl::DoSwapBuffers(const gpu::SyncToken& sync_token) {
145 DCHECK(command_buffer_); 162 DCHECK(command_buffer_);
146 if (sync_token.HasData()) 163 if (taken_front_buffer_.IsZero()) {
147 sync_token_ = sync_token; 164 DLOG(ERROR) << "TakeFrontBuffer should be called before DoSwapBuffers";
165 return PP_ERROR_FAILED;
166 }
148 167
149 if (bound_to_instance_) { 168 if (bound_to_instance_) {
150 // If we are bound to the instance, we need to ask the compositor 169 // If we are bound to the instance, we need to ask the compositor
151 // to commit our backing texture so that the graphics appears on the page. 170 // to commit our backing texture so that the graphics appears on the page.
152 // When the backing texture will be committed we get notified via 171 // When the backing texture will be committed we get notified via
153 // ViewFlushedPaint(). 172 // ViewFlushedPaint().
154 // 173 //
155 // Don't need to check for NULL from GetPluginInstance since when we're 174 // Don't need to check for NULL from GetPluginInstance since when we're
156 // bound, we know our instance is valid. 175 // bound, we know our instance is valid.
157 HostGlobals::Get()->GetInstance(pp_instance())->CommitBackingTexture(); 176 cc::TextureMailbox texture_mailbox(taken_front_buffer_, sync_token,
177 GL_TEXTURE_2D);
178 taken_front_buffer_.SetZero();
179 HostGlobals::Get()
180 ->GetInstance(pp_instance())
181 ->CommitTextureMailbox(texture_mailbox);
158 commit_pending_ = true; 182 commit_pending_ = true;
159 } else { 183 } else {
160 // Wait for the command to complete on the GPU to allow for throttling. 184 // Wait for the command to complete on the GPU to allow for throttling.
161 command_buffer_->SignalSyncToken( 185 command_buffer_->SignalSyncToken(
162 sync_token_, 186 sync_token, base::Bind(&PPB_Graphics3D_Impl::OnSwapBuffers,
163 base::Bind(&PPB_Graphics3D_Impl::OnSwapBuffers, 187 weak_ptr_factory_.GetWeakPtr()));
164 weak_ptr_factory_.GetWeakPtr()));
165 } 188 }
166 189
167 return PP_OK_COMPLETIONPENDING; 190 return PP_OK_COMPLETIONPENDING;
168 } 191 }
169 192
170 bool PPB_Graphics3D_Impl::InitRaw(PPB_Graphics3D_API* share_context, 193 bool PPB_Graphics3D_Impl::InitRaw(PPB_Graphics3D_API* share_context,
171 const int32_t* attrib_list, 194 const int32_t* attrib_list,
172 gpu::Capabilities* capabilities, 195 gpu::Capabilities* capabilities,
173 base::SharedMemoryHandle* shared_state_handle, 196 base::SharedMemoryHandle* shared_state_handle,
174 gpu::CommandBufferId* command_buffer_id) { 197 gpu::CommandBufferId* command_buffer_id) {
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 276
254 command_buffer_->SetGpuControlClient(this); 277 command_buffer_->SetGpuControlClient(this);
255 278
256 if (shared_state_handle) 279 if (shared_state_handle)
257 *shared_state_handle = command_buffer_->GetSharedStateHandle(); 280 *shared_state_handle = command_buffer_->GetSharedStateHandle();
258 if (capabilities) 281 if (capabilities)
259 *capabilities = command_buffer_->GetCapabilities(); 282 *capabilities = command_buffer_->GetCapabilities();
260 if (command_buffer_id) 283 if (command_buffer_id)
261 *command_buffer_id = command_buffer_->GetCommandBufferID(); 284 *command_buffer_id = command_buffer_->GetCommandBufferID();
262 285
263 mailbox_ = gpu::Mailbox::Generate();
264 if (!command_buffer_->ProduceFrontBuffer(mailbox_))
265 return false;
266
267 return true; 286 return true;
268 } 287 }
269 288
270 void PPB_Graphics3D_Impl::OnGpuControlErrorMessage(const char* message, 289 void PPB_Graphics3D_Impl::OnGpuControlErrorMessage(const char* message,
271 int32_t id) { 290 int32_t id) {
272 if (!bound_to_instance_) 291 if (!bound_to_instance_)
273 return; 292 return;
274 WebPluginContainer* container = 293 WebPluginContainer* container =
275 HostGlobals::Get()->GetInstance(pp_instance())->container(); 294 HostGlobals::Get()->GetInstance(pp_instance())->container();
276 if (!container) 295 if (!container)
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 const PPP_Graphics3D* ppp_graphics_3d = static_cast<const PPP_Graphics3D*>( 353 const PPP_Graphics3D* ppp_graphics_3d = static_cast<const PPP_Graphics3D*>(
335 instance->module()->GetPluginInterface(PPP_GRAPHICS_3D_INTERFACE)); 354 instance->module()->GetPluginInterface(PPP_GRAPHICS_3D_INTERFACE));
336 // We have to check *again* that the instance exists, because it could have 355 // We have to check *again* that the instance exists, because it could have
337 // been deleted during GetPluginInterface(). Even the PluginModule could be 356 // been deleted during GetPluginInterface(). Even the PluginModule could be
338 // deleted, but in that case, the instance should also be gone, so the 357 // deleted, but in that case, the instance should also be gone, so the
339 // GetInstance check covers both cases. 358 // GetInstance check covers both cases.
340 if (ppp_graphics_3d && HostGlobals::Get()->GetInstance(this_pp_instance)) 359 if (ppp_graphics_3d && HostGlobals::Get()->GetInstance(this_pp_instance))
341 ppp_graphics_3d->Graphics3DContextLost(this_pp_instance); 360 ppp_graphics_3d->Graphics3DContextLost(this_pp_instance);
342 } 361 }
343 362
363 gpu::Mailbox PPB_Graphics3D_Impl::GenerateMailbox() {
364 if (!mailboxes_to_reuse_.empty()) {
365 gpu::Mailbox mailbox = mailboxes_to_reuse_.back();
366 mailboxes_to_reuse_.pop_back();
367 return mailbox;
368 }
369
370 return gpu::Mailbox::Generate();
371 }
372
344 } // namespace content 373 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/ppb_graphics_3d_impl.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698