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 | 5 |
6 /** | 6 /** |
7 * @fileoverview This view displays information on the current GPU | 7 * @fileoverview This view displays information on the current GPU |
8 * hardware. Its primary usefulness is to allow users to copy-paste | 8 * hardware. Its primary usefulness is to allow users to copy-paste |
9 * their data in an easy to read format for bug reports. | 9 * their data in an easy to read format for bug reports. |
10 */ | 10 */ |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // Feature map | 69 // Feature map |
70 var featureLabelMap = { | 70 var featureLabelMap = { |
71 '2d_canvas': 'Canvas', | 71 '2d_canvas': 'Canvas', |
72 '3d_css': '3D CSS', | 72 '3d_css': '3D CSS', |
73 'css_animation': 'CSS Animation', | 73 'css_animation': 'CSS Animation', |
74 'compositing': 'Compositing', | 74 'compositing': 'Compositing', |
75 'webgl': 'WebGL', | 75 'webgl': 'WebGL', |
76 'multisampling': 'WebGL multisampling', | 76 'multisampling': 'WebGL multisampling', |
77 'flash_3d': 'Flash 3D', | 77 'flash_3d': 'Flash 3D', |
78 'flash_stage3d': 'Flash Stage3D', | 78 'flash_stage3d': 'Flash Stage3D', |
| 79 'flash_stage3d_baseline': 'Flash Stage3D Baseline profile', |
79 'texture_sharing': 'Texture Sharing', | 80 'texture_sharing': 'Texture Sharing', |
80 'video_decode': 'Video Decode', | 81 'video_decode': 'Video Decode', |
81 'video': 'Video', | 82 'video': 'Video', |
82 // GPU Switching | 83 // GPU Switching |
83 'gpu_switching': 'GPU Switching', | 84 'gpu_switching': 'GPU Switching', |
84 'panel_fitting': 'Panel Fitting', | 85 'panel_fitting': 'Panel Fitting', |
85 'force_compositing_mode': 'Force Compositing Mode', | 86 'force_compositing_mode': 'Force Compositing Mode', |
86 }; | 87 }; |
87 var statusLabelMap = { | 88 var statusLabelMap = { |
88 'disabled_software': 'Software only. Hardware acceleration disabled.', | 89 'disabled_software': 'Software only. Hardware acceleration disabled.', |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 | 289 |
289 peg.innerHTML = ''; | 290 peg.innerHTML = ''; |
290 peg.appendChild(template); | 291 peg.appendChild(template); |
291 } | 292 } |
292 }; | 293 }; |
293 | 294 |
294 return { | 295 return { |
295 InfoView: InfoView | 296 InfoView: InfoView |
296 }; | 297 }; |
297 }); | 298 }); |
OLD | NEW |