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
3 // found in the LICENSE file.
5 #include "content/renderer/pepper/ppb_graphics_3d_impl.h"
8 #include "base/command_line.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/strings/utf_string_conversions.h"
11 #include "content/common/gpu/client/command_buffer_proxy_impl.h"
12 #include "content/common/gpu/client/gpu_channel_host.h"
13 #include "content/public/common/content_switches.h"
14 #include "content/public/common/web_preferences.h"
15 #include "content/renderer/pepper/host_globals.h"
16 #include "content/renderer/pepper/pepper_plugin_instance_impl.h"
17 #include "content/renderer/pepper/plugin_module.h"
18 #include "content/renderer/render_thread_impl.h"
19 #include "content/renderer/render_view_impl.h"
20 #include "gpu/command_buffer/client/gles2_implementation.h"
21 #include "ppapi/c/ppp_graphics_3d.h"
22 #include "ppapi/thunk/enter.h"
23 #include "third_party/WebKit/public/platform/WebString.h"
24 #include "third_party/WebKit/public/web/WebConsoleMessage.h"
25 #include "third_party/WebKit/public/web/WebDocument.h"
26 #include "third_party/WebKit/public/web/WebElement.h"
27 #include "third_party/WebKit/public/web/WebLocalFrame.h"
28 #include "third_party/WebKit/public/web/WebPluginContainer.h"
30 using ppapi::thunk::EnterResourceNoLock
;
31 using ppapi::thunk::PPB_Graphics3D_API
;
32 using blink::WebConsoleMessage
;
33 using blink::WebLocalFrame
;
34 using blink::WebPluginContainer
;
35 using blink::WebString
;
40 const int32 kCommandBufferSize
= 1024 * 1024;
41 const int32 kTransferBufferSize
= 1024 * 1024;
45 PPB_Graphics3D_Impl::PPB_Graphics3D_Impl(PP_Instance instance
)
46 : PPB_Graphics3D_Shared(instance
),
47 bound_to_instance_(false),
48 commit_pending_(false),
51 command_buffer_(NULL
),
52 weak_ptr_factory_(this) {}
54 PPB_Graphics3D_Impl::~PPB_Graphics3D_Impl() {
56 if (command_buffer_
) {
57 DCHECK(channel_
.get());
58 channel_
->DestroyCommandBuffer(command_buffer_
);
59 command_buffer_
= NULL
;
66 PP_Resource
PPB_Graphics3D_Impl::Create(PP_Instance instance
,
67 PP_Resource share_context
,
68 const int32_t* attrib_list
) {
69 PPB_Graphics3D_API
* share_api
= NULL
;
71 EnterResourceNoLock
<PPB_Graphics3D_API
> enter(share_context
, true);
74 share_api
= enter
.object();
76 scoped_refptr
<PPB_Graphics3D_Impl
> graphics_3d(
77 new PPB_Graphics3D_Impl(instance
));
78 if (!graphics_3d
->Init(share_api
, attrib_list
))
80 return graphics_3d
->GetReference();
84 PP_Resource
PPB_Graphics3D_Impl::CreateRaw(
86 PP_Resource share_context
,
87 const int32_t* attrib_list
,
88 base::SharedMemoryHandle
* shared_state_handle
) {
89 PPB_Graphics3D_API
* share_api
= NULL
;
91 EnterResourceNoLock
<PPB_Graphics3D_API
> enter(share_context
, true);
94 share_api
= enter
.object();
96 scoped_refptr
<PPB_Graphics3D_Impl
> graphics_3d(
97 new PPB_Graphics3D_Impl(instance
));
98 if (!graphics_3d
->InitRaw(share_api
, attrib_list
, shared_state_handle
))
100 return graphics_3d
->GetReference();
103 PP_Bool
PPB_Graphics3D_Impl::SetGetBuffer(int32_t transfer_buffer_id
) {
104 GetCommandBuffer()->SetGetBuffer(transfer_buffer_id
);
108 scoped_refptr
<gpu::Buffer
> PPB_Graphics3D_Impl::CreateTransferBuffer(
111 return GetCommandBuffer()->CreateTransferBuffer(size
, id
);
114 PP_Bool
PPB_Graphics3D_Impl::DestroyTransferBuffer(int32_t id
) {
115 GetCommandBuffer()->DestroyTransferBuffer(id
);
119 PP_Bool
PPB_Graphics3D_Impl::Flush(int32_t put_offset
) {
120 GetCommandBuffer()->Flush(put_offset
);
124 gpu::CommandBuffer::State
PPB_Graphics3D_Impl::WaitForTokenInRange(
127 GetCommandBuffer()->WaitForTokenInRange(start
, end
);
128 return GetCommandBuffer()->GetLastState();
131 gpu::CommandBuffer::State
PPB_Graphics3D_Impl::WaitForGetOffsetInRange(
134 GetCommandBuffer()->WaitForGetOffsetInRange(start
, end
);
135 return GetCommandBuffer()->GetLastState();
138 uint32_t PPB_Graphics3D_Impl::InsertSyncPoint() {
139 return command_buffer_
->InsertSyncPoint();
142 uint32_t PPB_Graphics3D_Impl::InsertFutureSyncPoint() {
143 return command_buffer_
->InsertFutureSyncPoint();
146 void PPB_Graphics3D_Impl::RetireSyncPoint(uint32_t sync_point
) {
147 return command_buffer_
->RetireSyncPoint(sync_point
);
150 bool PPB_Graphics3D_Impl::BindToInstance(bool bind
) {
151 bound_to_instance_
= bind
;
155 bool PPB_Graphics3D_Impl::IsOpaque() { return !has_alpha_
; }
157 void PPB_Graphics3D_Impl::ViewInitiatedPaint() {
158 commit_pending_
= false;
160 if (HasPendingSwap())
161 SwapBuffersACK(PP_OK
);
164 void PPB_Graphics3D_Impl::ViewFlushedPaint() {}
166 int PPB_Graphics3D_Impl::GetCommandBufferRouteId() {
167 DCHECK(command_buffer_
);
168 return command_buffer_
->GetRouteID();
171 gpu::CommandBuffer
* PPB_Graphics3D_Impl::GetCommandBuffer() {
172 return command_buffer_
;
175 gpu::GpuControl
* PPB_Graphics3D_Impl::GetGpuControl() {
176 return command_buffer_
;
179 int32
PPB_Graphics3D_Impl::DoSwapBuffers() {
180 DCHECK(command_buffer_
);
181 // We do not have a GLES2 implementation when using an OOP proxy.
182 // The plugin-side proxy is responsible for adding the SwapBuffers command
183 // to the command buffer in that case.
185 gles2_impl()->SwapBuffers();
187 // Since the backing texture has been updated, a new sync point should be
189 sync_point_
= command_buffer_
->InsertSyncPoint();
191 if (bound_to_instance_
) {
192 // If we are bound to the instance, we need to ask the compositor
193 // to commit our backing texture so that the graphics appears on the page.
194 // When the backing texture will be committed we get notified via
195 // ViewFlushedPaint().
197 // Don't need to check for NULL from GetPluginInstance since when we're
198 // bound, we know our instance is valid.
199 HostGlobals::Get()->GetInstance(pp_instance())->CommitBackingTexture();
200 commit_pending_
= true;
202 // Wait for the command to complete on the GPU to allow for throttling.
203 command_buffer_
->SignalSyncPoint(
205 base::Bind(&PPB_Graphics3D_Impl::OnSwapBuffers
,
206 weak_ptr_factory_
.GetWeakPtr()));
209 return PP_OK_COMPLETIONPENDING
;
212 bool PPB_Graphics3D_Impl::Init(PPB_Graphics3D_API
* share_context
,
213 const int32_t* attrib_list
) {
214 if (!InitRaw(share_context
, attrib_list
, NULL
))
217 gpu::gles2::GLES2Implementation
* share_gles2
= NULL
;
220 static_cast<PPB_Graphics3D_Shared
*>(share_context
)->gles2_impl();
223 return CreateGLES2Impl(kCommandBufferSize
, kTransferBufferSize
, share_gles2
);
226 bool PPB_Graphics3D_Impl::InitRaw(
227 PPB_Graphics3D_API
* share_context
,
228 const int32_t* attrib_list
,
229 base::SharedMemoryHandle
* shared_state_handle
) {
230 PepperPluginInstanceImpl
* plugin_instance
=
231 HostGlobals::Get()->GetInstance(pp_instance());
232 if (!plugin_instance
)
235 const WebPreferences
& prefs
=
236 static_cast<RenderViewImpl
*>(plugin_instance
->GetRenderView())
237 ->webkit_preferences();
238 // 3D access might be disabled or blacklisted.
239 if (!prefs
.pepper_3d_enabled
)
242 RenderThreadImpl
* render_thread
= RenderThreadImpl::current();
246 channel_
= render_thread
->EstablishGpuChannelSync(
247 CAUSE_FOR_GPU_LAUNCH_PEPPERPLATFORMCONTEXT3DIMPL_INITIALIZE
);
251 gfx::Size surface_size
;
252 std::vector
<int32
> attribs
;
253 gfx::GpuPreference gpu_preference
= gfx::PreferDiscreteGpu
;
254 // TODO(alokp): Change GpuChannelHost::CreateOffscreenCommandBuffer()
255 // interface to accept width and height in the attrib_list so that
256 // we do not need to filter for width and height here.
258 for (const int32_t* attr
= attrib_list
; attr
[0] != PP_GRAPHICS3DATTRIB_NONE
;
261 case PP_GRAPHICS3DATTRIB_WIDTH
:
262 surface_size
.set_width(attr
[1]);
264 case PP_GRAPHICS3DATTRIB_HEIGHT
:
265 surface_size
.set_height(attr
[1]);
267 case PP_GRAPHICS3DATTRIB_GPU_PREFERENCE
:
269 (attr
[1] == PP_GRAPHICS3DATTRIB_GPU_PREFERENCE_LOW_POWER
)
270 ? gfx::PreferIntegratedGpu
271 : gfx::PreferDiscreteGpu
;
273 case PP_GRAPHICS3DATTRIB_ALPHA_SIZE
:
274 has_alpha_
= attr
[1] > 0;
277 attribs
.push_back(attr
[0]);
278 attribs
.push_back(attr
[1]);
282 attribs
.push_back(PP_GRAPHICS3DATTRIB_NONE
);
285 CommandBufferProxyImpl
* share_buffer
= NULL
;
287 PPB_Graphics3D_Impl
* share_graphics
=
288 static_cast<PPB_Graphics3D_Impl
*>(share_context
);
289 share_buffer
= share_graphics
->command_buffer_
;
292 command_buffer_
= channel_
->CreateOffscreenCommandBuffer(
293 surface_size
, share_buffer
, attribs
, GURL::EmptyGURL(), gpu_preference
);
294 if (!command_buffer_
)
296 if (!command_buffer_
->Initialize())
298 if (shared_state_handle
)
299 *shared_state_handle
= command_buffer_
->GetSharedStateHandle();
300 mailbox_
= gpu::Mailbox::Generate();
301 if (!command_buffer_
->ProduceFrontBuffer(mailbox_
))
303 sync_point_
= command_buffer_
->InsertSyncPoint();
305 command_buffer_
->SetChannelErrorCallback(base::Bind(
306 &PPB_Graphics3D_Impl::OnContextLost
, weak_ptr_factory_
.GetWeakPtr()));
308 command_buffer_
->SetOnConsoleMessageCallback(base::Bind(
309 &PPB_Graphics3D_Impl::OnConsoleMessage
, weak_ptr_factory_
.GetWeakPtr()));
313 void PPB_Graphics3D_Impl::OnConsoleMessage(const std::string
& message
, int id
) {
314 if (!bound_to_instance_
)
316 WebPluginContainer
* container
=
317 HostGlobals::Get()->GetInstance(pp_instance())->container();
320 WebLocalFrame
* frame
= container
->element().document().frame();
323 WebConsoleMessage console_message
= WebConsoleMessage(
324 WebConsoleMessage::LevelError
, WebString(base::UTF8ToUTF16(message
)));
325 frame
->addMessageToConsole(console_message
);
328 void PPB_Graphics3D_Impl::OnSwapBuffers() {
329 if (HasPendingSwap()) {
330 // If we're off-screen, no need to trigger and wait for compositing.
331 // Just send the swap-buffers ACK to the plugin immediately.
332 commit_pending_
= false;
333 SwapBuffersACK(PP_OK
);
337 void PPB_Graphics3D_Impl::OnContextLost() {
338 // Don't need to check for NULL from GetPluginInstance since when we're
339 // bound, we know our instance is valid.
340 if (bound_to_instance_
) {
341 HostGlobals::Get()->GetInstance(pp_instance())->BindGraphics(pp_instance(),
345 // Send context lost to plugin. This may have been caused by a PPAPI call, so
346 // avoid re-entering.
347 base::MessageLoop::current()->PostTask(
349 base::Bind(&PPB_Graphics3D_Impl::SendContextLost
,
350 weak_ptr_factory_
.GetWeakPtr()));
353 void PPB_Graphics3D_Impl::SendContextLost() {
354 // By the time we run this, the instance may have been deleted, or in the
355 // process of being deleted. Even in the latter case, we don't want to send a
356 // callback after DidDestroy.
357 PepperPluginInstanceImpl
* instance
=
358 HostGlobals::Get()->GetInstance(pp_instance());
359 if (!instance
|| !instance
->container())
362 // This PPB_Graphics3D_Impl could be deleted during the call to
363 // GetPluginInterface (which sends a sync message in some cases). We still
364 // send the Graphics3DContextLost to the plugin; the instance may care about
365 // that event even though this context has been destroyed.
366 PP_Instance this_pp_instance
= pp_instance();
367 const PPP_Graphics3D
* ppp_graphics_3d
= static_cast<const PPP_Graphics3D
*>(
368 instance
->module()->GetPluginInterface(PPP_GRAPHICS_3D_INTERFACE
));
369 // We have to check *again* that the instance exists, because it could have
370 // been deleted during GetPluginInterface(). Even the PluginModule could be
371 // deleted, but in that case, the instance should also be gone, so the
372 // GetInstance check covers both cases.
373 if (ppp_graphics_3d
&& HostGlobals::Get()->GetInstance(this_pp_instance
))
374 ppp_graphics_3d
->Graphics3DContextLost(this_pp_instance
);
377 } // namespace content