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

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

Issue 2167423002: Add accelerated_vpx_decode GPU blacklist feature type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add ifdef Created 4 years, 5 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
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | gpu/config/gpu_blacklist.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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'flash_3d': 'Flash', 88 'flash_3d': 'Flash',
89 'flash_stage3d': 'Flash Stage3D', 89 'flash_stage3d': 'Flash Stage3D',
90 'flash_stage3d_baseline': 'Flash Stage3D Baseline profile', 90 'flash_stage3d_baseline': 'Flash Stage3D Baseline profile',
91 'texture_sharing': 'Texture Sharing', 91 'texture_sharing': 'Texture Sharing',
92 'video_decode': 'Video Decode', 92 'video_decode': 'Video Decode',
93 'video_encode': 'Video Encode', 93 'video_encode': 'Video Encode',
94 'panel_fitting': 'Panel Fitting', 94 'panel_fitting': 'Panel Fitting',
95 'rasterization': 'Rasterization', 95 'rasterization': 'Rasterization',
96 'multiple_raster_threads': 'Multiple Raster Threads', 96 'multiple_raster_threads': 'Multiple Raster Threads',
97 'native_gpu_memory_buffers': 'Native GpuMemoryBuffers', 97 'native_gpu_memory_buffers': 'Native GpuMemoryBuffers',
98 'vpx_decode': 'VPx Video Decode',
98 }; 99 };
99 100
100 var statusMap = { 101 var statusMap = {
101 'disabled_software': { 102 'disabled_software': {
102 'label': 'Software only. Hardware acceleration disabled', 103 'label': 'Software only. Hardware acceleration disabled',
103 'class': 'feature-yellow' 104 'class': 'feature-yellow'
104 }, 105 },
105 'disabled_off': { 106 'disabled_off': {
106 'label': 'Disabled', 107 'label': 'Disabled',
107 'class': 'feature-red' 108 'class': 'feature-red'
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 358
358 peg.innerHTML = ''; 359 peg.innerHTML = '';
359 peg.appendChild(template); 360 peg.appendChild(template);
360 } 361 }
361 }; 362 };
362 363
363 return { 364 return {
364 InfoView: InfoView 365 InfoView: InfoView
365 }; 366 };
366 }); 367 });
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | gpu/config/gpu_blacklist.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698