blob: 68f9d0b6c59f0aca4841290003e1f1aaf71cf6a4 [file] [log] [blame]
// Copyright 2021 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.
@available(added=7)
library fuchsia.camera2.debug;
using zx;
/// This is the interface to the camera driver
/// which allows debug settings.
@discoverable
protocol Debug {
// Set the default sensor mode
SetDefaultSensorMode(resource struct {
mode uint32;
}) -> (struct {
status zx.status;
});
};