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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 image(false), | 73 image(false), |
74 future_sync_points(false), | 74 future_sync_points(false), |
75 blend_equation_advanced(false), | 75 blend_equation_advanced(false), |
76 blend_equation_advanced_coherent(false), | 76 blend_equation_advanced_coherent(false), |
77 texture_rg(false), | 77 texture_rg(false), |
78 image_ycbcr_422(false), | 78 image_ycbcr_422(false), |
79 render_buffer_format_bgra8888(false), | 79 render_buffer_format_bgra8888(false), |
80 occlusion_query_boolean(false), | 80 occlusion_query_boolean(false), |
81 timer_queries(false), | 81 timer_queries(false), |
82 surfaceless(false), | 82 surfaceless(false), |
| 83 flips_vertically(false), |
83 major_version(2), | 84 major_version(2), |
84 minor_version(0) {} | 85 minor_version(0) {} |
85 | 86 |
86 } // namespace gpu | 87 } // namespace gpu |
OLD | NEW |