| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 max_varying_components(0), | 49 max_varying_components(0), |
| 50 max_vertex_output_components(0), | 50 max_vertex_output_components(0), |
| 51 max_vertex_uniform_blocks(0), | 51 max_vertex_uniform_blocks(0), |
| 52 max_vertex_uniform_components(0), | 52 max_vertex_uniform_components(0), |
| 53 min_program_texel_offset(0), | 53 min_program_texel_offset(0), |
| 54 num_extensions(0), | 54 num_extensions(0), |
| 55 num_program_binary_formats(0), | 55 num_program_binary_formats(0), |
| 56 uniform_buffer_offset_alignment(1), | 56 uniform_buffer_offset_alignment(1), |
| 57 post_sub_buffer(false), | 57 post_sub_buffer(false), |
| 58 egl_image_external(false), | 58 egl_image_external(false), |
| 59 texture_format_astc(false), |
| 59 texture_format_atc(false), | 60 texture_format_atc(false), |
| 60 texture_format_bgra8888(false), | 61 texture_format_bgra8888(false), |
| 61 texture_format_dxt1(false), | 62 texture_format_dxt1(false), |
| 62 texture_format_dxt5(false), | 63 texture_format_dxt5(false), |
| 63 texture_format_etc1(false), | 64 texture_format_etc1(false), |
| 64 texture_format_etc1_npot(false), | 65 texture_format_etc1_npot(false), |
| 65 texture_rectangle(false), | 66 texture_rectangle(false), |
| 66 iosurface(false), | 67 iosurface(false), |
| 67 texture_usage(false), | 68 texture_usage(false), |
| 68 texture_storage(false), | 69 texture_storage(false), |
| 69 discard_framebuffer(false), | 70 discard_framebuffer(false), |
| 70 sync_query(false), | 71 sync_query(false), |
| 71 image(false), | 72 image(false), |
| 72 future_sync_points(false), | 73 future_sync_points(false), |
| 73 blend_equation_advanced(false), | 74 blend_equation_advanced(false), |
| 74 blend_equation_advanced_coherent(false), | 75 blend_equation_advanced_coherent(false), |
| 75 texture_rg(false), | 76 texture_rg(false), |
| 76 render_buffer_format_bgra8888(false), | 77 render_buffer_format_bgra8888(false), |
| 77 occlusion_query_boolean(false), | 78 occlusion_query_boolean(false), |
| 78 surfaceless(false), | 79 surfaceless(false), |
| 79 major_version(2), | 80 major_version(2), |
| 80 minor_version(0) { | 81 minor_version(0) { |
| 81 } | 82 } |
| 82 | 83 |
| 83 } // namespace gpu | 84 } // namespace gpu |
| OLD | NEW |