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

Side by Side Diff: content/browser/resources/gpu/info_view.js

Issue 12079111: Allow separately blacklisting Stage3D baseline mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/gpu/gpu_util.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 });
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_util.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698