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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 bool texture_usage; | 128 bool texture_usage; |
129 bool texture_storage; | 129 bool texture_storage; |
130 bool discard_framebuffer; | 130 bool discard_framebuffer; |
131 bool sync_query; | 131 bool sync_query; |
132 bool image; | 132 bool image; |
133 bool future_sync_points; | 133 bool future_sync_points; |
134 bool blend_equation_advanced; | 134 bool blend_equation_advanced; |
135 bool blend_equation_advanced_coherent; | 135 bool blend_equation_advanced_coherent; |
136 bool texture_rg; | 136 bool texture_rg; |
137 bool image_ycbcr_422; | 137 bool image_ycbcr_422; |
| 138 bool image_ycbcr_420v; |
138 bool render_buffer_format_bgra8888; | 139 bool render_buffer_format_bgra8888; |
139 bool occlusion_query_boolean; | 140 bool occlusion_query_boolean; |
140 bool timer_queries; | 141 bool timer_queries; |
141 bool surfaceless; | 142 bool surfaceless; |
142 bool flips_vertically; | 143 bool flips_vertically; |
143 | 144 |
144 int major_version; | 145 int major_version; |
145 int minor_version; | 146 int minor_version; |
146 }; | 147 }; |
147 | 148 |
148 } // namespace gpu | 149 } // namespace gpu |
149 | 150 |
150 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ | 151 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ |
OLD | NEW |