blob: 350f0541ea95ccdb281b5ac48c0724242119dbd6 [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=HEAD)
library fuchsia.camera2.debug;
using zx;
/// This is the interface to the camera driver
/// which allows debug settings.
@discoverable
closed protocol Debug {
// Set the default sensor mode
strict SetDefaultSensorMode(resource struct {
mode uint32;
}) -> (struct {
status zx.Status;
});
};