| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 bool is_swiftshader; | 76 bool is_swiftshader; |
| 77 bool angle_texture_usage; | 77 bool angle_texture_usage; |
| 78 bool ext_texture_storage; | 78 bool ext_texture_storage; |
| 79 bool chromium_path_rendering; | 79 bool chromium_path_rendering; |
| 80 bool chromium_framebuffer_mixed_samples; | 80 bool chromium_framebuffer_mixed_samples; |
| 81 bool blend_equation_advanced; | 81 bool blend_equation_advanced; |
| 82 bool blend_equation_advanced_coherent; | 82 bool blend_equation_advanced_coherent; |
| 83 bool ext_texture_rg; | 83 bool ext_texture_rg; |
| 84 bool chromium_image_ycbcr_420v; | 84 bool chromium_image_ycbcr_420v; |
| 85 bool chromium_image_ycbcr_422; | 85 bool chromium_image_ycbcr_422; |
| 86 bool enable_subscribe_uniform; | |
| 87 bool emulate_primitive_restart_fixed_index; | 86 bool emulate_primitive_restart_fixed_index; |
| 88 bool ext_render_buffer_format_bgra8888; | 87 bool ext_render_buffer_format_bgra8888; |
| 89 bool ext_multisample_compatibility; | 88 bool ext_multisample_compatibility; |
| 90 bool ext_blend_func_extended; | 89 bool ext_blend_func_extended; |
| 91 bool ext_read_format_bgra; | 90 bool ext_read_format_bgra; |
| 92 }; | 91 }; |
| 93 | 92 |
| 94 FeatureInfo(); | 93 FeatureInfo(); |
| 95 | 94 |
| 96 // Constructor with workarounds taken from the current process's CommandLine | 95 // Constructor with workarounds taken from the current process's CommandLine |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 bool disable_shader_translator_; | 190 bool disable_shader_translator_; |
| 192 std::unique_ptr<gfx::GLVersionInfo> gl_version_info_; | 191 std::unique_ptr<gfx::GLVersionInfo> gl_version_info_; |
| 193 | 192 |
| 194 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); | 193 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); |
| 195 }; | 194 }; |
| 196 | 195 |
| 197 } // namespace gles2 | 196 } // namespace gles2 |
| 198 } // namespace gpu | 197 } // namespace gpu |
| 199 | 198 |
| 200 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ | 199 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ |
| OLD | NEW |