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

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

Issue 1637423004: Show Compositor information in chrome://gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move "GpuMemoryBuffer Status" section to below Created 4 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
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'multisampling': 'WebGL multisampling', 89 'multisampling': 'WebGL multisampling',
90 'flash_3d': 'Flash', 90 'flash_3d': 'Flash',
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 'panel_fitting': 'Panel Fitting', 96 'panel_fitting': 'Panel Fitting',
97 'rasterization': 'Rasterization', 97 'rasterization': 'Rasterization',
98 'multiple_raster_threads': 'Multiple Raster Threads', 98 'multiple_raster_threads': 'Multiple Raster Threads',
99 'native_gpu_memory_buffers': 'Native GpuMemoryBuffers',
99 }; 100 };
100 101
101 var statusMap = { 102 var statusMap = {
102 'disabled_software': { 103 'disabled_software': {
103 'label': 'Software only. Hardware acceleration disabled', 104 'label': 'Software only. Hardware acceleration disabled',
104 'class': 'feature-yellow' 105 'class': 'feature-yellow'
105 }, 106 },
106 'disabled_off': { 107 'disabled_off': {
107 'label': 'Disabled', 108 'label': 'Disabled',
108 'class': 'feature-red' 109 'class': 'feature-red'
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 355
355 peg.innerHTML = ''; 356 peg.innerHTML = '';
356 peg.appendChild(template); 357 peg.appendChild(template);
357 } 358 }
358 }; 359 };
359 360
360 return { 361 return {
361 InfoView: InfoView 362 InfoView: InfoView
362 }; 363 };
363 }); 364 });
OLDNEW
« content/browser/gpu/gpu_internals_ui.cc ('K') | « content/browser/resources/gpu/info_view.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698