blob: ed2eee0e2f8a3b251bb1098ad38ac09282286201 [file] [log] [blame]
// Copyright 2023 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.hardware.display;
type VirtconMode = strict enum : uint8 {
INACTIVE = 0; // the virtcon is never visible.
FALLBACK = 1; // the virtcon is visible if there is no main client.
FORCED = 2; // the virtcon is visible even if there is a main client.
};