| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 int max_varying_components; | 107 int max_varying_components; |
| 108 int max_vertex_output_components; | 108 int max_vertex_output_components; |
| 109 int max_vertex_uniform_blocks; | 109 int max_vertex_uniform_blocks; |
| 110 int max_vertex_uniform_components; | 110 int max_vertex_uniform_components; |
| 111 int min_program_texel_offset; | 111 int min_program_texel_offset; |
| 112 int num_extensions; | 112 int num_extensions; |
| 113 int num_program_binary_formats; | 113 int num_program_binary_formats; |
| 114 int uniform_buffer_offset_alignment; | 114 int uniform_buffer_offset_alignment; |
| 115 | 115 |
| 116 bool post_sub_buffer; | 116 bool post_sub_buffer; |
| 117 bool commit_overlay_planes; |
| 117 bool egl_image_external; | 118 bool egl_image_external; |
| 118 bool texture_format_astc; | 119 bool texture_format_astc; |
| 119 bool texture_format_atc; | 120 bool texture_format_atc; |
| 120 bool texture_format_bgra8888; | 121 bool texture_format_bgra8888; |
| 121 bool texture_format_dxt1; | 122 bool texture_format_dxt1; |
| 122 bool texture_format_dxt5; | 123 bool texture_format_dxt5; |
| 123 bool texture_format_etc1; | 124 bool texture_format_etc1; |
| 124 bool texture_format_etc1_npot; | 125 bool texture_format_etc1_npot; |
| 125 bool texture_rectangle; | 126 bool texture_rectangle; |
| 126 bool iosurface; | 127 bool iosurface; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 139 bool timer_queries; | 140 bool timer_queries; |
| 140 bool surfaceless; | 141 bool surfaceless; |
| 141 | 142 |
| 142 int major_version; | 143 int major_version; |
| 143 int minor_version; | 144 int minor_version; |
| 144 }; | 145 }; |
| 145 | 146 |
| 146 } // namespace gpu | 147 } // namespace gpu |
| 147 | 148 |
| 148 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ | 149 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ |
| OLD | NEW |