| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 186 |
| 187 bool chromium_color_buffer_float_rgba_available_; | 187 bool chromium_color_buffer_float_rgba_available_; |
| 188 bool chromium_color_buffer_float_rgb_available_; | 188 bool chromium_color_buffer_float_rgb_available_; |
| 189 bool ext_color_buffer_float_available_; | 189 bool ext_color_buffer_float_available_; |
| 190 bool oes_texture_float_linear_available_; | 190 bool oes_texture_float_linear_available_; |
| 191 bool oes_texture_half_float_linear_available_; | 191 bool oes_texture_half_float_linear_available_; |
| 192 | 192 |
| 193 bool disable_shader_translator_; | 193 bool disable_shader_translator_; |
| 194 std::unique_ptr<gl::GLVersionInfo> gl_version_info_; | 194 std::unique_ptr<gl::GLVersionInfo> gl_version_info_; |
| 195 | 195 |
| 196 // Whether the command line switch kEnableCMAAShaders is passed in. | |
| 197 bool enable_cmaa_shaders_switch_; | |
| 198 | |
| 199 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); | 196 DISALLOW_COPY_AND_ASSIGN(FeatureInfo); |
| 200 }; | 197 }; |
| 201 | 198 |
| 202 } // namespace gles2 | 199 } // namespace gles2 |
| 203 } // namespace gpu | 200 } // namespace gpu |
| 204 | 201 |
| 205 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ | 202 #endif // GPU_COMMAND_BUFFER_SERVICE_FEATURE_INFO_H_ |
| OLD | NEW |