| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 bool chromium_copy_texture = false; | 109 bool chromium_copy_texture = false; |
| 110 bool chromium_copy_compressed_texture = false; | 110 bool chromium_copy_compressed_texture = false; |
| 111 bool angle_framebuffer_multisample = false; | 111 bool angle_framebuffer_multisample = false; |
| 112 bool ext_disjoint_timer_query = false; | 112 bool ext_disjoint_timer_query = false; |
| 113 bool angle_client_arrays = false; | 113 bool angle_client_arrays = false; |
| 114 bool angle_request_extension = false; | 114 bool angle_request_extension = false; |
| 115 bool ext_debug_marker = false; | 115 bool ext_debug_marker = false; |
| 116 bool arb_robustness = false; | 116 bool arb_robustness = false; |
| 117 bool khr_robustness = false; | 117 bool khr_robustness = false; |
| 118 bool ext_robustness = false; | 118 bool ext_robustness = false; |
| 119 bool chromium_texture_buffer = false; | |
| 120 }; | 119 }; |
| 121 | 120 |
| 122 FeatureInfo(); | 121 FeatureInfo(); |
| 123 | 122 |
| 124 // Constructor with workarounds taken from the current process's CommandLine | 123 // Constructor with workarounds taken from the current process's CommandLine |
| 125 explicit FeatureInfo( | 124 explicit FeatureInfo( |
| 126 const GpuDriverBugWorkarounds& gpu_driver_bug_workarounds); | 125 const GpuDriverBugWorkarounds& gpu_driver_bug_workarounds); |
| 127 | 126 |
| 128 // Constructor with workarounds taken from |command_line|. | 127 // Constructor with workarounds taken from |command_line|. |
| 129 FeatureInfo(const base::CommandLine& command_line, | 128 FeatureInfo(const base::CommandLine& command_line, |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 bool disable_shader_translator_; | 222 bool disable_shader_translator_; |
| 224 std::unique_ptr<gl::GLVersionInfo> gl_version_info_; | 223 std::unique_ptr<gl::GLVersionInfo> gl_version_info_; |
| 225 | 224 |
| 226 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); | 225 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); |
| 227 }; | 226 }; |
| 228 | 227 |
| 229 } // namespace gles2 | 228 } // namespace gles2 |
| 230 } // namespace gpu | 229 } // namespace gpu |
| 231 | 230 |
| 232 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ | 231 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ |
| OLD | NEW |