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

Unified Diff: chrome/gpu/gpu_thread.cc

Issue 6588138: Implemented multisampling control in software rendering list. Move prelimina... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: For the records: landing patch Created 9 years, 10 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
« no previous file with comments | « chrome/common/gpu_messages_internal.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/gpu/gpu_thread.cc
===================================================================
--- chrome/gpu/gpu_thread.cc (revision 76920)
+++ chrome/gpu/gpu_thread.cc (working copy)
@@ -121,21 +121,6 @@
if (!single_process)
logging::SetLogMessageHandler(GpuProcessLogMessageHandler);
- // Collect as much GPU info as possible without creating GL/D3D context.
- gpu_info_collector::CollectPreliminaryGraphicsInfo(&gpu_info_);
- LOG(INFO) << "gpu_info_collector::CollectPreliminaryGraphicsInfo complete";
-
- // Go through GPU blacklist with partial GPU info; if GPU is already
- // blacklisted, don't create GL/D3D context.
- bool blacklisted;
- Send(new GpuHostMsg_PreliminaryGraphicsInfoCollected(gpu_info_,
- &blacklisted));
- if (blacklisted) {
- LOG(INFO) << "GPU is blacklisted based on preliminary GPU info collection";
- MessageLoop::current()->Quit();
- return;
- }
-
// Load the GL implementation and locate the bindings before starting the GPU
// watchdog because this can take a lot of time and the GPU watchdog might
// terminate the GPU process.
« no previous file with comments | « chrome/common/gpu_messages_internal.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698