| 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 10 matching lines...) Expand all Loading... |
| 21 max_vertex_texture_image_units(0), | 21 max_vertex_texture_image_units(0), |
| 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_transform_feedback_separate_attribs(0), | 26 max_transform_feedback_separate_attribs(0), |
| 27 max_uniform_buffer_bindings(0), | 27 max_uniform_buffer_bindings(0), |
| 28 uniform_buffer_offset_alignment(1), | 28 uniform_buffer_offset_alignment(1), |
| 29 post_sub_buffer(false), | 29 post_sub_buffer(false), |
| 30 egl_image_external(false), | 30 egl_image_external(false), |
| 31 texture_format_atc(false), |
| 31 texture_format_bgra8888(false), | 32 texture_format_bgra8888(false), |
| 33 texture_format_dxt1(false), |
| 34 texture_format_dxt5(false), |
| 32 texture_format_etc1(false), | 35 texture_format_etc1(false), |
| 33 texture_format_etc1_npot(false), | 36 texture_format_etc1_npot(false), |
| 34 texture_rectangle(false), | 37 texture_rectangle(false), |
| 35 iosurface(false), | 38 iosurface(false), |
| 36 texture_usage(false), | 39 texture_usage(false), |
| 37 texture_storage(false), | 40 texture_storage(false), |
| 38 discard_framebuffer(false), | 41 discard_framebuffer(false), |
| 39 sync_query(false), | 42 sync_query(false), |
| 40 image(false), | 43 image(false), |
| 41 future_sync_points(false), | 44 future_sync_points(false), |
| 42 blend_equation_advanced(false), | 45 blend_equation_advanced(false), |
| 43 blend_equation_advanced_coherent(false), | 46 blend_equation_advanced_coherent(false), |
| 44 texture_rg(false) { | 47 texture_rg(false) { |
| 45 } | 48 } |
| 46 | 49 |
| 47 } // namespace gpu | 50 } // namespace gpu |
| OLD | NEW |