capabilities.cc revision 0529e5d033099cbfc42635f6f6183833b09dff6e
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)      fast_npot_mo8_textures(false),
12a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      egl_image_external(false),
13a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      texture_format_bgra8888(false),
14a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      texture_format_etc1(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),
21a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      map_image(false) {}
22a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
23a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)}  // namespace gpu
24