| // 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. | |
| }; |