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

Side by Side Diff: content/renderer/render_widget.cc

Issue 13042012: Browser side changes for software compositing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
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/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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 WebKit::WebGraphicsContext3D::Attributes attributes; 568 WebKit::WebGraphicsContext3D::Attributes attributes;
569 attributes.antialias = false; 569 attributes.antialias = false;
570 attributes.shareResources = true; 570 attributes.shareResources = true;
571 attributes.noAutomaticFlushes = true; 571 attributes.noAutomaticFlushes = true;
572 WebKit::WebGraphicsContext3D* context = CreateGraphicsContext3D(attributes); 572 WebKit::WebGraphicsContext3D* context = CreateGraphicsContext3D(attributes);
573 if (!context) 573 if (!context)
574 return scoped_ptr<cc::OutputSurface>(); 574 return scoped_ptr<cc::OutputSurface>();
575 575
576 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); 576 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
577 if (command_line.HasSwitch(switches::kEnableSoftwareCompositingGLAdapter)) { 577 if (command_line.HasSwitch(switches::kEnableSoftwareCompositingGLAdapter)) {
578 // In the absence of a software-based delegating renderer, use this
579 // stopgap adapter class to present the software renderer output using a
580 // 3d context.
581 return scoped_ptr<cc::OutputSurface>( 578 return scoped_ptr<cc::OutputSurface>(
582 new CompositorOutputSurface(routing_id(), NULL, 579 new CompositorOutputSurface(routing_id(), NULL,
583 new CompositorSoftwareOutputDeviceGLAdapter(context))); 580 new CompositorSoftwareOutputDevice()));
584 } else { 581 } else {
585 bool composite_to_mailbox = 582 bool composite_to_mailbox =
586 command_line.HasSwitch(cc::switches::kCompositeToMailbox); 583 command_line.HasSwitch(cc::switches::kCompositeToMailbox);
587 DCHECK(!composite_to_mailbox || command_line.HasSwitch( 584 DCHECK(!composite_to_mailbox || command_line.HasSwitch(
588 cc::switches::kEnableCompositorFrameMessage)); 585 cc::switches::kEnableCompositorFrameMessage));
589 // No swap throttling yet when compositing on the main thread. 586 // No swap throttling yet when compositing on the main thread.
590 DCHECK(!composite_to_mailbox || is_threaded_compositing_enabled_); 587 DCHECK(!composite_to_mailbox || is_threaded_compositing_enabled_);
591 return scoped_ptr<cc::OutputSurface>(composite_to_mailbox ? 588 return scoped_ptr<cc::OutputSurface>(composite_to_mailbox ?
592 new MailboxOutputSurface(routing_id(), context, NULL) : 589 new MailboxOutputSurface(routing_id(), context, NULL) :
593 new CompositorOutputSurface(routing_id(), context, NULL)); 590 new CompositorOutputSurface(routing_id(), context, NULL));
(...skipping 1719 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698