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/render_widget.h" | 5 #include "content/renderer/render_widget.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/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
15 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
17 #include "cc/base/switches.h" | 17 #include "cc/base/switches.h" |
18 #include "cc/base/thread.h" | 18 #include "cc/base/thread.h" |
19 #include "cc/base/thread_impl.h" | 19 #include "cc/base/thread_impl.h" |
20 #include "cc/output/output_surface.h" | 20 #include "cc/output/output_surface.h" |
21 #include "cc/trees/layer_tree_host.h" | 21 #include "cc/trees/layer_tree_host.h" |
22 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 22 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
23 #include "content/common/swapped_out_messages.h" | 23 #include "content/common/swapped_out_messages.h" |
24 #include "content/common/view_messages.h" | 24 #include "content/common/view_messages.h" |
25 #include "content/public/common/content_switches.h" | 25 #include "content/public/common/content_switches.h" |
26 #include "content/renderer/gpu/compositor_output_surface.h" | 26 #include "content/renderer/gpu/compositor_output_surface.h" |
27 #include "content/renderer/gpu/compositor_software_output_device_gl_adapter.h" | 27 #include "content/renderer/gpu/compositor_software_output_device.h" |
28 #include "content/renderer/gpu/input_handler_manager.h" | 28 #include "content/renderer/gpu/input_handler_manager.h" |
29 #include "content/renderer/gpu/mailbox_output_surface.h" | 29 #include "content/renderer/gpu/mailbox_output_surface.h" |
30 #include "content/renderer/gpu/render_widget_compositor.h" | 30 #include "content/renderer/gpu/render_widget_compositor.h" |
31 #include "content/renderer/render_process.h" | 31 #include "content/renderer/render_process.h" |
32 #include "content/renderer/render_thread_impl.h" | 32 #include "content/renderer/render_thread_impl.h" |
33 #include "content/renderer/renderer_webkitplatformsupport_impl.h" | 33 #include "content/renderer/renderer_webkitplatformsupport_impl.h" |
34 #include "ipc/ipc_sync_message.h" | 34 #include "ipc/ipc_sync_message.h" |
35 #include "skia/ext/platform_canvas.h" | 35 #include "skia/ext/platform_canvas.h" |
36 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" | 36 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" |
37 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" | 37 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 | 548 |
549 GURL RenderWidget::GetURLForGraphicsContext3D() { | 549 GURL RenderWidget::GetURLForGraphicsContext3D() { |
550 return GURL(); | 550 return GURL(); |
551 } | 551 } |
552 | 552 |
553 bool RenderWidget::ForceCompositingModeEnabled() { | 553 bool RenderWidget::ForceCompositingModeEnabled() { |
554 return false; | 554 return false; |
555 } | 555 } |
556 | 556 |
557 scoped_ptr<cc::OutputSurface> RenderWidget::CreateOutputSurface() { | 557 scoped_ptr<cc::OutputSurface> RenderWidget::CreateOutputSurface() { |
| 558 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
| 559 if (command_line.HasSwitch(switches::kEnableSoftwareCompositingGLAdapter)) { |
| 560 return scoped_ptr<cc::OutputSurface>( |
| 561 new CompositorOutputSurface(routing_id(), NULL, |
| 562 new CompositorSoftwareOutputDevice())); |
| 563 } |
| 564 |
558 // Explicitly disable antialiasing for the compositor. As of the time of | 565 // Explicitly disable antialiasing for the compositor. As of the time of |
559 // this writing, the only platform that supported antialiasing for the | 566 // this writing, the only platform that supported antialiasing for the |
560 // compositor was Mac OS X, because the on-screen OpenGL context creation | 567 // compositor was Mac OS X, because the on-screen OpenGL context creation |
561 // code paths on Windows and Linux didn't yet have multisampling support. | 568 // code paths on Windows and Linux didn't yet have multisampling support. |
562 // Mac OS X essentially always behaves as though it's rendering offscreen. | 569 // Mac OS X essentially always behaves as though it's rendering offscreen. |
563 // Multisampling has a heavy cost especially on devices with relatively low | 570 // Multisampling has a heavy cost especially on devices with relatively low |
564 // fill rate like most notebooks, and the Mac implementation would need to | 571 // fill rate like most notebooks, and the Mac implementation would need to |
565 // be optimized to resolve directly into the IOSurface shared between the | 572 // be optimized to resolve directly into the IOSurface shared between the |
566 // GPU and browser processes. For these reasons and to avoid platform | 573 // GPU and browser processes. For these reasons and to avoid platform |
567 // disparities we explicitly disable antialiasing. | 574 // disparities we explicitly disable antialiasing. |
568 WebKit::WebGraphicsContext3D::Attributes attributes; | 575 WebKit::WebGraphicsContext3D::Attributes attributes; |
569 attributes.antialias = false; | 576 attributes.antialias = false; |
570 attributes.shareResources = true; | 577 attributes.shareResources = true; |
571 attributes.noAutomaticFlushes = true; | 578 attributes.noAutomaticFlushes = true; |
572 WebKit::WebGraphicsContext3D* context = CreateGraphicsContext3D(attributes); | 579 WebKit::WebGraphicsContext3D* context = CreateGraphicsContext3D(attributes); |
573 if (!context) | 580 if (!context) |
574 return scoped_ptr<cc::OutputSurface>(); | 581 return scoped_ptr<cc::OutputSurface>(); |
575 | 582 |
576 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); | 583 bool composite_to_mailbox = |
577 if (command_line.HasSwitch(switches::kEnableSoftwareCompositingGLAdapter)) { | 584 command_line.HasSwitch(cc::switches::kCompositeToMailbox); |
578 // In the absence of a software-based delegating renderer, use this | 585 DCHECK(!composite_to_mailbox || command_line.HasSwitch( |
579 // stopgap adapter class to present the software renderer output using a | 586 cc::switches::kEnableCompositorFrameMessage)); |
580 // 3d context. | 587 // No swap throttling yet when compositing on the main thread. |
581 return scoped_ptr<cc::OutputSurface>( | 588 DCHECK(!composite_to_mailbox || is_threaded_compositing_enabled_); |
582 new CompositorOutputSurface(routing_id(), NULL, | 589 return scoped_ptr<cc::OutputSurface>(composite_to_mailbox ? |
583 new CompositorSoftwareOutputDeviceGLAdapter(context))); | 590 new MailboxOutputSurface(routing_id(), context, NULL) : |
584 } else { | 591 new CompositorOutputSurface(routing_id(), context, NULL)); |
585 bool composite_to_mailbox = | |
586 command_line.HasSwitch(cc::switches::kCompositeToMailbox); | |
587 DCHECK(!composite_to_mailbox || command_line.HasSwitch( | |
588 cc::switches::kEnableCompositorFrameMessage)); | |
589 // No swap throttling yet when compositing on the main thread. | |
590 DCHECK(!composite_to_mailbox || is_threaded_compositing_enabled_); | |
591 return scoped_ptr<cc::OutputSurface>(composite_to_mailbox ? | |
592 new MailboxOutputSurface(routing_id(), context, NULL) : | |
593 new CompositorOutputSurface(routing_id(), context, NULL)); | |
594 } | |
595 } | 592 } |
596 | 593 |
597 void RenderWidget::OnViewContextSwapBuffersAborted() { | 594 void RenderWidget::OnViewContextSwapBuffersAborted() { |
598 TRACE_EVENT0("renderer", "RenderWidget::OnSwapBuffersAborted"); | 595 TRACE_EVENT0("renderer", "RenderWidget::OnSwapBuffersAborted"); |
599 while (!updates_pending_swap_.empty()) { | 596 while (!updates_pending_swap_.empty()) { |
600 ViewHostMsg_UpdateRect* msg = updates_pending_swap_.front(); | 597 ViewHostMsg_UpdateRect* msg = updates_pending_swap_.front(); |
601 updates_pending_swap_.pop_front(); | 598 updates_pending_swap_.pop_front(); |
602 // msg can be NULL if the swap doesn't correspond to an DoDeferredUpdate | 599 // msg can be NULL if the swap doesn't correspond to an DoDeferredUpdate |
603 // compositing pass, hence doesn't require an UpdateRect message. | 600 // compositing pass, hence doesn't require an UpdateRect message. |
604 if (msg) | 601 if (msg) |
(...skipping 1708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2313 | 2310 |
2314 if (!context->Initialize( | 2311 if (!context->Initialize( |
2315 attributes, | 2312 attributes, |
2316 false /* bind generates resources */, | 2313 false /* bind generates resources */, |
2317 CAUSE_FOR_GPU_LAUNCH_WEBGRAPHICSCONTEXT3DCOMMANDBUFFERIMPL_INITIALIZE)
) | 2314 CAUSE_FOR_GPU_LAUNCH_WEBGRAPHICSCONTEXT3DCOMMANDBUFFERIMPL_INITIALIZE)
) |
2318 return NULL; | 2315 return NULL; |
2319 return context.release(); | 2316 return context.release(); |
2320 } | 2317 } |
2321 | 2318 |
2322 } // namespace content | 2319 } // namespace content |
OLD | NEW |