1a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)// Copyright 2013 The Chromium Authors. All rights reserved.
2a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
3a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)// found in the LICENSE file.
4a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
5a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)#include "gpu/command_buffer/common/capabilities.h"
6a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
7a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)namespace gpu {
8a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
9a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)Capabilities::Capabilities()
10a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)    : post_sub_buffer(false),
11a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      egl_image_external(false),
12a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      texture_format_bgra8888(false),
13a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      texture_format_etc1(false),
141320f92c476a1ad9d19dba2a48c72b75566198e9Primiano Tucci      texture_format_etc1_npot(false),
15a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      texture_rectangle(false),
16a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      iosurface(false),
17a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      texture_usage(false),
18a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      texture_storage(false),
19a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      discard_framebuffer(false),
200529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch      sync_query(false),
21116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch      map_image(false),
22116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch      future_sync_points(false) {
23116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch}
24a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
25a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)}  // namespace gpu
26