1// Copyright 2018 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
5library fuchsia.sysmem;
6
7// Describes how the contents of buffers are represented.
8// Buffers of each type are described by their own tables.
9union BufferFormat {
10    ImageFormat image;
11};
12
13// Describes constraints for allocating buffers of some desired form.
14// Buffers of each type are described by their own tables.
15union BufferSpec {
16    ImageSpec image;
17};
18