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::Capabilities() | 9 Capabilities::Capabilities() |
10 : post_sub_buffer(false), | 10 : post_sub_buffer(false), |
11 egl_image_external(false), | 11 egl_image_external(false), |
12 texture_format_bgra8888(false), | 12 texture_format_bgra8888(false), |
13 texture_format_etc1(false), | 13 texture_format_etc1(false), |
14 texture_format_etc1_npot(false), | 14 texture_format_etc1_npot(false), |
15 texture_rectangle(false), | 15 texture_rectangle(false), |
16 iosurface(false), | 16 iosurface(false), |
17 texture_usage(false), | 17 texture_usage(false), |
18 texture_storage(false), | 18 texture_storage(false), |
19 discard_framebuffer(false), | 19 discard_framebuffer(false), |
20 sync_query(false), | 20 sync_query(false), |
21 image(false), | 21 image(false), |
22 future_sync_points(false), | 22 future_sync_points(false), |
23 blend_minmax(false) { | 23 blend_minmax(false), |
| 24 blend_equation_advanced(false) { |
24 } | 25 } |
25 | 26 |
26 } // namespace gpu | 27 } // namespace gpu |
OLD | NEW |