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 "cc/output/context_provider.h" | 5 #include "cc/output/context_provider.h" |
6 | 6 |
7 namespace cc { | 7 namespace cc { |
8 | 8 |
9 ContextProvider::Capabilities::Capabilities() | 9 ContextProvider::Capabilities::Capabilities() |
10 : bind_uniform_location(false), | 10 : bind_uniform_location(false), |
11 discard_backbuffer(false), | 11 discard_backbuffer(false), |
12 egl_image_external(false), | 12 egl_image_external(false), |
13 fast_npot_mo8_textures(false), | 13 fast_npot_mo8_textures(false), |
14 iosurface(false), | 14 iosurface(false), |
15 map_image(false), | 15 map_image(false), |
16 map_sub(false), | 16 map_sub(false), |
17 post_sub_buffer(false), | 17 post_sub_buffer(false), |
18 set_visibility(false), | 18 set_visibility(false), |
19 shallow_flush(false), | 19 shallow_flush(false), |
20 swapbuffers_complete_callback(false), | 20 swapbuffers_complete_callback(false), |
21 texture_format_bgra8888(false), | 21 texture_format_bgra8888(false), |
22 texture_rectangle(false), | 22 texture_rectangle(false), |
23 texture_storage(false), | 23 texture_storage(false), |
24 texture_usage(false) {} | 24 texture_usage(false), |
| 25 discard_framebuffer(false) {} |
25 | 26 |
26 } // namespace cc | 27 } // namespace cc |
OLD | NEW |