| 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/gpu/gpu_info_collector.h" | 5 #include "content/gpu/gpu_info_collector.h" |
| 6 | 6 |
| 7 #include <X11/Xlib.h> | 7 #include <X11/Xlib.h> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "ui/gl/gl_context.h" | 24 #include "ui/gl/gl_context.h" |
| 25 #include "ui/gl/gl_implementation.h" | 25 #include "ui/gl/gl_implementation.h" |
| 26 #include "ui/gl/gl_surface.h" | 26 #include "ui/gl/gl_surface.h" |
| 27 #include "ui/gl/gl_switches.h" | 27 #include "ui/gl/gl_switches.h" |
| 28 | 28 |
| 29 namespace { | 29 namespace { |
| 30 | 30 |
| 31 // This checks if a system supports PCI bus. | 31 // This checks if a system supports PCI bus. |
| 32 // We check the existence of /sys/bus/pci or /sys/bug/pci_express. | 32 // We check the existence of /sys/bus/pci or /sys/bug/pci_express. |
| 33 bool IsPciSupported() { | 33 bool IsPciSupported() { |
| 34 const FilePath pci_path("/sys/bus/pci/"); | 34 const base::FilePath pci_path("/sys/bus/pci/"); |
| 35 const FilePath pcie_path("/sys/bus/pci_express/"); | 35 const base::FilePath pcie_path("/sys/bus/pci_express/"); |
| 36 return (file_util::PathExists(pci_path) || | 36 return (file_util::PathExists(pci_path) || |
| 37 file_util::PathExists(pcie_path)); | 37 file_util::PathExists(pcie_path)); |
| 38 } | 38 } |
| 39 | 39 |
| 40 // Scan /etc/ati/amdpcsdb.default for "ReleaseVersion". | 40 // Scan /etc/ati/amdpcsdb.default for "ReleaseVersion". |
| 41 // Return empty string on failing. | 41 // Return empty string on failing. |
| 42 std::string CollectDriverVersionATI() { | 42 std::string CollectDriverVersionATI() { |
| 43 const FilePath::CharType kATIFileName[] = | 43 const base::FilePath::CharType kATIFileName[] = |
| 44 FILE_PATH_LITERAL("/etc/ati/amdpcsdb.default"); | 44 FILE_PATH_LITERAL("/etc/ati/amdpcsdb.default"); |
| 45 FilePath ati_file_path(kATIFileName); | 45 base::FilePath ati_file_path(kATIFileName); |
| 46 if (!file_util::PathExists(ati_file_path)) | 46 if (!file_util::PathExists(ati_file_path)) |
| 47 return std::string(); | 47 return std::string(); |
| 48 std::string contents; | 48 std::string contents; |
| 49 if (!file_util::ReadFileToString(ati_file_path, &contents)) | 49 if (!file_util::ReadFileToString(ati_file_path, &contents)) |
| 50 return std::string(); | 50 return std::string(); |
| 51 base::StringTokenizer t(contents, "\r\n"); | 51 base::StringTokenizer t(contents, "\r\n"); |
| 52 while (t.GetNext()) { | 52 while (t.GetNext()) { |
| 53 std::string line = t.token(); | 53 std::string line = t.token(); |
| 54 if (StartsWithASCII(line, "ReleaseVersion=", true)) { | 54 if (StartsWithASCII(line, "ReleaseVersion=", true)) { |
| 55 size_t begin = line.find_first_of("0123456789"); | 55 size_t begin = line.find_first_of("0123456789"); |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 gpu_info->driver_version = driver_version; | 279 gpu_info->driver_version = driver_version; |
| 280 return true; | 280 return true; |
| 281 } | 281 } |
| 282 | 282 |
| 283 void MergeGPUInfo(content::GPUInfo* basic_gpu_info, | 283 void MergeGPUInfo(content::GPUInfo* basic_gpu_info, |
| 284 const content::GPUInfo& context_gpu_info) { | 284 const content::GPUInfo& context_gpu_info) { |
| 285 MergeGPUInfoGL(basic_gpu_info, context_gpu_info); | 285 MergeGPUInfoGL(basic_gpu_info, context_gpu_info); |
| 286 } | 286 } |
| 287 | 287 |
| 288 } // namespace gpu_info_collector | 288 } // namespace gpu_info_collector |
| OLD | NEW |