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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 int num_compressed_texture_formats; | 80 int num_compressed_texture_formats; |
81 int num_shader_binary_formats; | 81 int num_shader_binary_formats; |
82 int bind_generates_resource_chromium; | 82 int bind_generates_resource_chromium; |
83 | 83 |
84 int max_3d_texture_size; | 84 int max_3d_texture_size; |
85 int max_array_texture_layers; | 85 int max_array_texture_layers; |
86 int max_color_attachments; | 86 int max_color_attachments; |
87 int64_t max_combined_fragment_uniform_components; | 87 int64_t max_combined_fragment_uniform_components; |
88 int max_combined_uniform_blocks; | 88 int max_combined_uniform_blocks; |
89 int64_t max_combined_vertex_uniform_components; | 89 int64_t max_combined_vertex_uniform_components; |
| 90 int max_copy_texture_chromium_size; |
90 int max_draw_buffers; | 91 int max_draw_buffers; |
91 int64_t max_element_index; | 92 int64_t max_element_index; |
92 int max_elements_indices; | 93 int max_elements_indices; |
93 int max_elements_vertices; | 94 int max_elements_vertices; |
94 int max_fragment_input_components; | 95 int max_fragment_input_components; |
95 int max_fragment_uniform_blocks; | 96 int max_fragment_uniform_blocks; |
96 int max_fragment_uniform_components; | 97 int max_fragment_uniform_components; |
97 int max_program_texel_offset; | 98 int max_program_texel_offset; |
98 int max_samples; | 99 int max_samples; |
99 int64_t max_server_wait_timeout; | 100 int64_t max_server_wait_timeout; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 bool blend_equation_advanced_coherent; | 133 bool blend_equation_advanced_coherent; |
133 bool texture_rg; | 134 bool texture_rg; |
134 | 135 |
135 int major_version; | 136 int major_version; |
136 int minor_version; | 137 int minor_version; |
137 }; | 138 }; |
138 | 139 |
139 } // namespace gpu | 140 } // namespace gpu |
140 | 141 |
141 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ | 142 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ |
OLD | NEW |