| Index: content/browser/resources/gpu/info_view.js
|
| diff --git a/content/browser/resources/gpu/info_view.js b/content/browser/resources/gpu/info_view.js
|
| index 20c6b8e9cc8ca74a9f02a2541ad77e9784853125..cf4b34e1c7acf32f4710845d3bf632edec9c8169 100644
|
| --- a/content/browser/resources/gpu/info_view.js
|
| +++ b/content/browser/resources/gpu/info_view.js
|
| @@ -94,6 +94,7 @@ cr.define('gpu', function() {
|
| 'panel_fitting': 'Panel Fitting',
|
| 'rasterization': 'Rasterization',
|
| 'multiple_raster_threads': 'Multiple Raster Threads',
|
| + 'gpu_memory_buffer': 'GpuMemoryBuffer',
|
| };
|
|
|
| var statusMap = {
|
| @@ -141,6 +142,14 @@ cr.define('gpu', function() {
|
| 'label': 'Force enabled',
|
| 'class': 'feature-green'
|
| },
|
| + 'enabled_native_one_copy': {
|
| + 'label': 'Native implementation enabled (one-copy)',
|
| + 'class': 'feature-green'
|
| + },
|
| + 'enabled_native_zero_copy': {
|
| + 'label': 'Native implementation enabled (zero-copy)',
|
| + 'class': 'feature-green'
|
| + },
|
| };
|
|
|
| // GPU info, basic
|
|
|