blob: 1c4a53d427f0eff69bf1c23b42c15f81896448b5 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library ddk.protocol.goldfish.control;
using zx;
[Layout = "ddk-protocol"]
protocol GoldfishControl {
/// Get color buffer for VMO. Fails if VMO is not associated with a color
/// buffer.
GetColorBuffer(handle<vmo> vmo) -> (zx.status ret, uint32 cb);
};