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
3// found in the LICENSE file.
4
5#include "gpu/command_buffer/common/capabilities.h"
6
7namespace gpu {
8
9Capabilities::Capabilities()
10    : post_sub_buffer(false),
11      fast_npot_mo8_textures(false),
12      egl_image_external(false),
13      texture_format_bgra8888(false),
14      texture_format_etc1(false),
15      texture_rectangle(false),
16      iosurface(false),
17      texture_usage(false),
18      texture_storage(false),
19      discard_framebuffer(false),
20      map_image(false) {}
21
22}  // namespace gpu
23