| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Functions to enumerate the Dx Diagnostic Tool hierarchy and build up | 5 // Functions to enumerate the Dx Diagnostic Tool hierarchy and build up |
| 6 // a tree of nodes with name / value properties. | 6 // a tree of nodes with name / value properties. |
| 7 | 7 |
| 8 #define INITGUID | 8 #define INITGUID |
| 9 #include <dxdiag.h> | 9 #include <dxdiag.h> |
| 10 #include <windows.h> | 10 #include <windows.h> |
| 11 | 11 |
| 12 #include "chrome/gpu/gpu_info_collector.h" | |
| 13 | |
| 14 #include "base/string_number_conversions.h" | 12 #include "base/string_number_conversions.h" |
| 15 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
| 14 #include "content/gpu/gpu_info_collector.h" |
| 16 | 15 |
| 17 namespace { | 16 namespace { |
| 18 | 17 |
| 19 // Traverses the IDxDiagContainer tree and populates a tree of DxDiagNode | 18 // Traverses the IDxDiagContainer tree and populates a tree of DxDiagNode |
| 20 // structures that contains property name / value pairs and subtrees of DirectX | 19 // structures that contains property name / value pairs and subtrees of DirectX |
| 21 // diagnostic information. | 20 // diagnostic information. |
| 22 void RecurseDiagnosticTree(DxDiagNode* output, | 21 void RecurseDiagnosticTree(DxDiagNode* output, |
| 23 IDxDiagContainer* container, | 22 IDxDiagContainer* container, |
| 24 int depth) { | 23 int depth) { |
| 25 HRESULT hr; | 24 HRESULT hr; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 125 |
| 127 root->Release(); | 126 root->Release(); |
| 128 } | 127 } |
| 129 } | 128 } |
| 130 provider->Release(); | 129 provider->Release(); |
| 131 } | 130 } |
| 132 | 131 |
| 133 return success; | 132 return success; |
| 134 } | 133 } |
| 135 } // namespace gpu_info_collector | 134 } // namespace gpu_info_collector |
| OLD | NEW |