OLD | NEW |
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_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ |
6 #define GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 bool use_arb_occlusion_query_for_occlusion_query_boolean = false; | 63 bool use_arb_occlusion_query_for_occlusion_query_boolean = false; |
64 bool native_vertex_array_object = false; | 64 bool native_vertex_array_object = false; |
65 bool ext_texture_format_astc = false; | 65 bool ext_texture_format_astc = false; |
66 bool ext_texture_format_atc = false; | 66 bool ext_texture_format_atc = false; |
67 bool ext_texture_format_bgra8888 = false; | 67 bool ext_texture_format_bgra8888 = false; |
68 bool ext_texture_format_dxt1 = false; | 68 bool ext_texture_format_dxt1 = false; |
69 bool ext_texture_format_dxt5 = false; | 69 bool ext_texture_format_dxt5 = false; |
70 bool enable_shader_name_hashing = false; | 70 bool enable_shader_name_hashing = false; |
71 bool enable_samplers = false; | 71 bool enable_samplers = false; |
72 bool ext_draw_buffers = false; | 72 bool ext_draw_buffers = false; |
73 bool nv_draw_buffers = false; | |
74 bool ext_frag_depth = false; | 73 bool ext_frag_depth = false; |
75 bool ext_shader_texture_lod = false; | 74 bool ext_shader_texture_lod = false; |
76 bool use_async_readpixels = false; | 75 bool use_async_readpixels = false; |
77 bool map_buffer_range = false; | 76 bool map_buffer_range = false; |
78 bool ext_discard_framebuffer = false; | 77 bool ext_discard_framebuffer = false; |
79 bool angle_depth_texture = false; | 78 bool angle_depth_texture = false; |
80 bool is_swiftshader_for_webgl = false; | 79 bool is_swiftshader_for_webgl = false; |
81 bool angle_texture_usage = false; | 80 bool angle_texture_usage = false; |
82 bool ext_texture_storage = false; | 81 bool ext_texture_storage = false; |
83 bool chromium_path_rendering = false; | 82 bool chromium_path_rendering = false; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 bool disable_shader_translator_; | 204 bool disable_shader_translator_; |
206 std::unique_ptr<gl::GLVersionInfo> gl_version_info_; | 205 std::unique_ptr<gl::GLVersionInfo> gl_version_info_; |
207 | 206 |
208 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); | 207 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); |
209 }; | 208 }; |
210 | 209 |
211 } // namespace gles2 | 210 } // namespace gles2 |
212 } // namespace gpu | 211 } // namespace gpu |
213 | 212 |
214 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ | 213 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ |
OLD | NEW |