| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_COMMON_CAPABILITIES_H_ | 5 #ifndef GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ |
| 6 #define GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ | 6 #define GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "gpu/gpu_export.h" | 10 #include "gpu/gpu_export.h" |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 bool blend_equation_advanced_coherent; | 135 bool blend_equation_advanced_coherent; |
| 136 bool texture_rg; | 136 bool texture_rg; |
| 137 bool texture_half_float_linear; | 137 bool texture_half_float_linear; |
| 138 bool image_ycbcr_422; | 138 bool image_ycbcr_422; |
| 139 bool image_ycbcr_420v; | 139 bool image_ycbcr_420v; |
| 140 bool render_buffer_format_bgra8888; | 140 bool render_buffer_format_bgra8888; |
| 141 bool occlusion_query_boolean; | 141 bool occlusion_query_boolean; |
| 142 bool timer_queries; | 142 bool timer_queries; |
| 143 bool surfaceless; | 143 bool surfaceless; |
| 144 bool flips_vertically; | 144 bool flips_vertically; |
| 145 bool avoid_one_component_egl_images; |
| 145 | 146 |
| 146 int major_version; | 147 int major_version; |
| 147 int minor_version; | 148 int minor_version; |
| 148 }; | 149 }; |
| 149 | 150 |
| 150 } // namespace gpu | 151 } // namespace gpu |
| 151 | 152 |
| 152 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ | 153 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ |
| OLD | NEW |