| 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 21 matching lines...) Expand all Loading... |
| 32 max_draw_buffers(0), | 32 max_draw_buffers(0), |
| 33 max_element_index(0), | 33 max_element_index(0), |
| 34 max_elements_indices(0), | 34 max_elements_indices(0), |
| 35 max_elements_vertices(0), | 35 max_elements_vertices(0), |
| 36 max_fragment_input_components(0), | 36 max_fragment_input_components(0), |
| 37 max_fragment_uniform_blocks(0), | 37 max_fragment_uniform_blocks(0), |
| 38 max_fragment_uniform_components(0), | 38 max_fragment_uniform_components(0), |
| 39 max_program_texel_offset(0), | 39 max_program_texel_offset(0), |
| 40 max_samples(0), | 40 max_samples(0), |
| 41 max_server_wait_timeout(0), | 41 max_server_wait_timeout(0), |
| 42 max_texture_lod_bias(0.f), |
| 42 max_transform_feedback_interleaved_components(0), | 43 max_transform_feedback_interleaved_components(0), |
| 43 max_transform_feedback_separate_attribs(0), | 44 max_transform_feedback_separate_attribs(0), |
| 44 max_transform_feedback_separate_components(0), | 45 max_transform_feedback_separate_components(0), |
| 45 max_uniform_block_size(0), | 46 max_uniform_block_size(0), |
| 46 max_uniform_buffer_bindings(0), | 47 max_uniform_buffer_bindings(0), |
| 47 max_varying_components(0), | 48 max_varying_components(0), |
| 48 max_vertex_output_components(0), | 49 max_vertex_output_components(0), |
| 49 max_vertex_uniform_blocks(0), | 50 max_vertex_uniform_blocks(0), |
| 50 max_vertex_uniform_components(0), | 51 max_vertex_uniform_components(0), |
| 51 min_program_texel_offset(0), | 52 min_program_texel_offset(0), |
| (...skipping 17 matching lines...) Expand all Loading... |
| 69 image(false), | 70 image(false), |
| 70 future_sync_points(false), | 71 future_sync_points(false), |
| 71 blend_equation_advanced(false), | 72 blend_equation_advanced(false), |
| 72 blend_equation_advanced_coherent(false), | 73 blend_equation_advanced_coherent(false), |
| 73 texture_rg(false), | 74 texture_rg(false), |
| 74 major_version(2), | 75 major_version(2), |
| 75 minor_version(0) { | 76 minor_version(0) { |
| 76 } | 77 } |
| 77 | 78 |
| 78 } // namespace gpu | 79 } // namespace gpu |
| OLD | NEW |