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

Unified Diff: content/renderer/render_view_impl.cc

Issue 10873099: Flag and adapter class for software compositing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index 3c9e7856b210e443f9fd709b74dfd9be106912d0..3d05849ff67df16a9654c4a2238141f5bdb5fd81 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -69,6 +69,7 @@
#include "content/renderer/external_popup_menu.h"
#include "content/renderer/geolocation_dispatcher.h"
#include "content/renderer/gpu/compositor_thread.h"
+#include "content/renderer/gpu/compositor_output_canvas_3d_to_2d_adapter.h"
#include "content/renderer/gpu/compositor_output_surface.h"
#include "content/renderer/idle_user_detector.h"
#include "content/renderer/input_tag_speech_dispatcher.h"
@@ -1804,9 +1805,6 @@ WebStorageNamespace* RenderViewImpl::createSessionStorageNamespace(
}
WebKit::WebCompositorOutputSurface* RenderViewImpl::createOutputSurface() {
- // TODO(aelias): if force-software-mode is on, create an output surface
- // without a 3D context.
-
// Explicitly disable antialiasing for the compositor. As of the time of
// this writing, the only platform that supported antialiasing for the
// compositor was Mac OS X, because the on-screen OpenGL context creation
@@ -1824,7 +1822,15 @@ WebKit::WebCompositorOutputSurface* RenderViewImpl::createOutputSurface() {
if (!context)
return NULL;
- return new CompositorOutputSurface(routing_id(), context);
+ const CommandLine& command_line = *CommandLine::ForCurrentProcess();
+ if (command_line.HasSwitch(switches::kForceSoftwareCompositing)) {
+ // Until we get a software-based delegating renderer, use this stopgap
+ // adapter class to present the software renderer output using a 3d
+ // context.
+ return new CompositorOutputSurface(routing_id(), NULL,
+ new CompositorOutputCanvas3DTo2DAdapter(context));
+ } else
+ return new CompositorOutputSurface(routing_id(), context, NULL);
}
void RenderViewImpl::didAddMessageToConsole(

Powered by Google App Engine
This is Rietveld 408576698