| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'css_animation': 'CSS Animation', | 86 'css_animation': 'CSS Animation', |
| 87 'gpu_compositing': 'Compositing', | 87 'gpu_compositing': 'Compositing', |
| 88 'webgl': 'WebGL', | 88 'webgl': 'WebGL', |
| 89 'multisampling': 'WebGL multisampling', | 89 'multisampling': 'WebGL multisampling', |
| 90 'flash_3d': 'Flash 3D', | 90 'flash_3d': 'Flash 3D', |
| 91 'flash_stage3d': 'Flash Stage3D', | 91 'flash_stage3d': 'Flash Stage3D', |
| 92 'flash_stage3d_baseline': 'Flash Stage3D Baseline profile', | 92 'flash_stage3d_baseline': 'Flash Stage3D Baseline profile', |
| 93 'texture_sharing': 'Texture Sharing', | 93 'texture_sharing': 'Texture Sharing', |
| 94 'video_decode': 'Video Decode', | 94 'video_decode': 'Video Decode', |
| 95 'video_encode': 'Video Encode', | 95 'video_encode': 'Video Encode', |
| 96 'video': 'Video', | |
| 97 // GPU Switching | 96 // GPU Switching |
| 98 'gpu_switching': 'GPU Switching', | 97 'gpu_switching': 'GPU Switching', |
| 99 'panel_fitting': 'Panel Fitting', | 98 'panel_fitting': 'Panel Fitting', |
| 100 'raster': 'Rasterization', | 99 'raster': 'Rasterization', |
| 101 }; | 100 }; |
| 102 var statusLabelMap = { | 101 var statusLabelMap = { |
| 103 'disabled_software': 'Software only. Hardware acceleration disabled.', | 102 'disabled_software': 'Software only. Hardware acceleration disabled.', |
| 104 'disabled_software_animated': 'Software animated.', | 103 'disabled_software_animated': 'Software animated.', |
| 105 'disabled_software_multithreaded': 'Software only, multi-threaded', | 104 'disabled_software_multithreaded': 'Software only, multi-threaded', |
| 106 'disabled_off': 'Unavailable. Hardware acceleration disabled.', | 105 'disabled_off': 'Unavailable. Hardware acceleration disabled.', |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 | 349 |
| 351 peg.innerHTML = ''; | 350 peg.innerHTML = ''; |
| 352 peg.appendChild(template); | 351 peg.appendChild(template); |
| 353 } | 352 } |
| 354 }; | 353 }; |
| 355 | 354 |
| 356 return { | 355 return { |
| 357 InfoView: InfoView | 356 InfoView: InfoView |
| 358 }; | 357 }; |
| 359 }); | 358 }); |
| OLD | NEW |