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

Side by Side Diff: gpu/config/gpu_feature_type.h

Issue 2347383002: X11: Use better visuals for OpenGL (Closed)
Patch Set: Fix various tests Created 4 years, 2 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 #ifndef GPU_CONFIG_GPU_FEATURE_TYPE_H_ 5 #ifndef GPU_CONFIG_GPU_FEATURE_TYPE_H_
6 #define GPU_CONFIG_GPU_FEATURE_TYPE_H_ 6 #define GPU_CONFIG_GPU_FEATURE_TYPE_H_
7 7
8 namespace gpu { 8 namespace gpu {
9 9
10 // Provides flags indicating which gpu features are blacklisted for the system 10 // Provides flags indicating which gpu features are blacklisted for the system
11 // on which chrome is currently running. 11 // on which chrome is currently running.
12 // If a bit is set to 1, corresponding feature is blacklisted. 12 // If a bit is set to 1, corresponding feature is blacklisted.
13 enum GpuFeatureType { 13 enum GpuFeatureType {
14 GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS = 0, 14 GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS = 0,
15 GPU_FEATURE_TYPE_GPU_COMPOSITING, 15 GPU_FEATURE_TYPE_GPU_COMPOSITING = 1,
16 GPU_FEATURE_TYPE_WEBGL, 16 GPU_FEATURE_TYPE_WEBGL = 2,
17 GPU_FEATURE_TYPE_FLASH3D, 17 GPU_FEATURE_TYPE_FLASH3D = 3,
18 GPU_FEATURE_TYPE_FLASH_STAGE3D, 18 GPU_FEATURE_TYPE_FLASH_STAGE3D = 4,
19 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE, 19 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE = 5,
20 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE, 20 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE = 6,
21 GPU_FEATURE_TYPE_PANEL_FITTING, 21 GPU_FEATURE_TYPE_PANEL_FITTING = 7,
22 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE, 22 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE = 8,
23 GPU_FEATURE_TYPE_GPU_RASTERIZATION, 23 GPU_FEATURE_TYPE_GPU_RASTERIZATION = 9,
24 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE, 24 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE = 10,
25 NUMBER_OF_GPU_FEATURE_TYPES 25 NUMBER_OF_GPU_FEATURE_TYPES = 11
piman 2016/09/22 21:24:55 nit: why change all this?
Tom (Use chromium acct) 2016/09/23 20:00:37 Oops, that was left over from debugging. Reverted
26 }; 26 };
27 27
28 } // namespace gpu 28 } // namespace gpu
29 29
30 #endif // GPU_CONFIG_GPU_FEATURE_TYPE_H_ 30 #endif // GPU_CONFIG_GPU_FEATURE_TYPE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698