blob: aa6f732d021a579b1a83f52009bcb066713a6f7f [file] [log] [blame]
// Copyright 2022 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 fuchsia.ui.input.config;
/// This protocol used to control experimental features in input pipeline.
/// Users may use `ffx config set input-pipeline.xxx true` to enable the
/// feature.
@discoverable
protocol Features {
/// SetTouchpadMode will enable/disable the touchpad mode feature in
/// input pipeline. touchpad mode will have rich gesture support on
/// the touchpad instead of only mouse move and click.
SetTouchpadMode(struct {
enable bool;
});
};