Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / gpu / command_buffer / service / feature_info.h
blob9bd0f935dab87f0fda5c24b071904db52c121a62
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
3 // found in the LICENSE file.
5 #ifndef GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_
6 #define GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_
8 #include <string>
9 #include "base/macros.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
13 #include "gpu/command_buffer/service/gles2_cmd_validation.h"
14 #include "gpu/config/gpu_driver_bug_workaround_type.h"
15 #include "gpu/gpu_export.h"
17 namespace base {
18 class CommandLine;
21 namespace gfx {
22 struct GLVersionInfo;
25 namespace gpu {
26 namespace gles2 {
28 // FeatureInfo records the features that are available for a ContextGroup.
29 class GPU_EXPORT FeatureInfo : public base::RefCounted<FeatureInfo> {
30 public:
31 struct FeatureFlags {
32 FeatureFlags();
34 bool chromium_color_buffer_float_rgba;
35 bool chromium_color_buffer_float_rgb;
36 bool chromium_framebuffer_multisample;
37 bool chromium_sync_query;
38 // Use glBlitFramebuffer() and glRenderbufferStorageMultisample() with
39 // GL_EXT_framebuffer_multisample-style semantics, since they are exposed
40 // as core GL functions on this implementation.
41 bool use_core_framebuffer_multisample;
42 bool multisampled_render_to_texture;
43 // Use the IMG GLenum values and functions rather than EXT.
44 bool use_img_for_multisampled_render_to_texture;
45 bool chromium_screen_space_antialiasing;
46 bool oes_standard_derivatives;
47 bool oes_egl_image_external;
48 bool oes_depth24;
49 bool oes_compressed_etc1_rgb8_texture;
50 bool packed_depth24_stencil8;
51 bool npot_ok;
52 bool enable_texture_float_linear;
53 bool enable_texture_half_float_linear;
54 bool angle_translated_shader_source;
55 bool angle_pack_reverse_row_order;
56 bool arb_texture_rectangle;
57 bool angle_instanced_arrays;
58 bool occlusion_query_boolean;
59 bool use_arb_occlusion_query2_for_occlusion_query_boolean;
60 bool use_arb_occlusion_query_for_occlusion_query_boolean;
61 bool native_vertex_array_object;
62 bool ext_texture_format_astc;
63 bool ext_texture_format_atc;
64 bool ext_texture_format_bgra8888;
65 bool ext_texture_format_dxt1;
66 bool ext_texture_format_dxt5;
67 bool enable_shader_name_hashing;
68 bool enable_samplers;
69 bool ext_draw_buffers;
70 bool nv_draw_buffers;
71 bool ext_frag_depth;
72 bool ext_shader_texture_lod;
73 bool use_async_readpixels;
74 bool map_buffer_range;
75 bool ext_discard_framebuffer;
76 bool angle_depth_texture;
77 bool is_swiftshader;
78 bool angle_texture_usage;
79 bool ext_texture_storage;
80 bool chromium_path_rendering;
81 bool blend_equation_advanced;
82 bool blend_equation_advanced_coherent;
83 bool ext_texture_rg;
84 bool chromium_image_ycbcr_422;
85 bool enable_subscribe_uniform;
86 bool emulate_primitive_restart_fixed_index;
87 bool ext_render_buffer_format_bgra8888;
90 struct Workarounds {
91 Workarounds();
93 #define GPU_OP(type, name) bool name;
94 GPU_DRIVER_BUG_WORKAROUNDS(GPU_OP)
95 #undef GPU_OP
97 // Note: 0 here means use driver limit.
98 GLint max_texture_size;
99 GLint max_cube_map_texture_size;
100 GLint max_fragment_uniform_vectors;
101 GLint max_varying_vectors;
102 GLint max_vertex_uniform_vectors;
103 GLint max_copy_texture_chromium_size;
106 // Constructor with workarounds taken from the current process's CommandLine
107 FeatureInfo();
109 // Constructor with workarounds taken from |command_line|
110 FeatureInfo(const base::CommandLine& command_line);
112 // Initializes the feature information. Needs a current GL context.
113 bool Initialize();
114 bool Initialize(const DisallowedFeatures& disallowed_features);
116 const Validators* validators() const {
117 return &validators_;
120 const std::string& extensions() const {
121 return extensions_;
124 const FeatureFlags& feature_flags() const {
125 return feature_flags_;
128 const Workarounds& workarounds() const {
129 return workarounds_;
132 const gfx::GLVersionInfo& gl_version_info() const {
133 DCHECK(gl_version_info_.get());
134 return *(gl_version_info_.get());
137 bool IsES3Capable() const;
138 void EnableES3Validators();
140 bool IsES3Enabled() const {
141 return unsafe_es3_apis_enabled_;
144 bool disable_shader_translator() const { return disable_shader_translator_; }
146 private:
147 friend class base::RefCounted<FeatureInfo>;
148 friend class BufferManagerClientSideArraysTest;
150 ~FeatureInfo();
152 void AddExtensionString(const char* s);
153 void InitializeBasicState(const base::CommandLine* command_line);
154 void InitializeFeatures();
156 Validators validators_;
158 DisallowedFeatures disallowed_features_;
160 // The extensions string returned by glGetString(GL_EXTENSIONS);
161 std::string extensions_;
163 // Flags for some features
164 FeatureFlags feature_flags_;
166 // Flags for Workarounds.
167 Workarounds workarounds_;
169 // Whether the command line switch kEnableUnsafeES3APIs is passed in.
170 bool enable_unsafe_es3_apis_switch_;
172 bool unsafe_es3_apis_enabled_;
174 // Whether the command line switch kEnableGLPathRendering is passed in.
175 bool enable_gl_path_rendering_switch_;
177 bool disable_shader_translator_;
178 scoped_ptr<gfx::GLVersionInfo> gl_version_info_;
180 DISALLOW_COPY_AND_ASSIGN(FeatureInfo);
183 } // namespace gles2
184 } // namespace gpu
186 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_