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 #include "gpu/command_buffer/common/capabilities.h" | 5 #include "gpu/command_buffer/common/capabilities.h" |
6 | 6 |
7 namespace gpu { | 7 namespace gpu { |
8 | 8 |
9 Capabilities::PerStagePrecisions::PerStagePrecisions() { | 9 Capabilities::PerStagePrecisions::PerStagePrecisions() { |
10 } | 10 } |
(...skipping 11 matching lines...) Expand all Loading... |
22 max_vertex_uniform_vectors(0), | 22 max_vertex_uniform_vectors(0), |
23 num_compressed_texture_formats(0), | 23 num_compressed_texture_formats(0), |
24 num_shader_binary_formats(0), | 24 num_shader_binary_formats(0), |
25 bind_generates_resource_chromium(0), | 25 bind_generates_resource_chromium(0), |
26 max_3d_texture_size(0), | 26 max_3d_texture_size(0), |
27 max_array_texture_layers(0), | 27 max_array_texture_layers(0), |
28 max_color_attachments(0), | 28 max_color_attachments(0), |
29 max_combined_fragment_uniform_components(0), | 29 max_combined_fragment_uniform_components(0), |
30 max_combined_uniform_blocks(0), | 30 max_combined_uniform_blocks(0), |
31 max_combined_vertex_uniform_components(0), | 31 max_combined_vertex_uniform_components(0), |
| 32 max_copy_texture_chromium_size(0), |
32 max_draw_buffers(0), | 33 max_draw_buffers(0), |
33 max_element_index(0), | 34 max_element_index(0), |
34 max_elements_indices(0), | 35 max_elements_indices(0), |
35 max_elements_vertices(0), | 36 max_elements_vertices(0), |
36 max_fragment_input_components(0), | 37 max_fragment_input_components(0), |
37 max_fragment_uniform_blocks(0), | 38 max_fragment_uniform_blocks(0), |
38 max_fragment_uniform_components(0), | 39 max_fragment_uniform_components(0), |
39 max_program_texel_offset(0), | 40 max_program_texel_offset(0), |
40 max_samples(0), | 41 max_samples(0), |
41 max_server_wait_timeout(0), | 42 max_server_wait_timeout(0), |
(...skipping 28 matching lines...) Expand all Loading... |
70 image(false), | 71 image(false), |
71 future_sync_points(false), | 72 future_sync_points(false), |
72 blend_equation_advanced(false), | 73 blend_equation_advanced(false), |
73 blend_equation_advanced_coherent(false), | 74 blend_equation_advanced_coherent(false), |
74 texture_rg(false), | 75 texture_rg(false), |
75 major_version(2), | 76 major_version(2), |
76 minor_version(0) { | 77 minor_version(0) { |
77 } | 78 } |
78 | 79 |
79 } // namespace gpu | 80 } // namespace gpu |
OLD | NEW |