blob: 5b52e1e16f9077a2227f9f3610260e94db14eaa3 [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.
#ifndef SRC_GRAPHICS_DISPLAY_DRIVERS_COORDINATOR_CLIENT_PRIORITY_H_
#define SRC_GRAPHICS_DISPLAY_DRIVERS_COORDINATOR_CLIENT_PRIORITY_H_
#include <cstdint>
namespace display_coordinator {
// The presentation priority level of a client connected to the Coordinator.
//
// Currently, at most one client can be connected at each priority level.
enum class ClientPriority : int8_t {
kVirtcon = 0,
kPrimary = 1,
};
const char* DebugStringFromClientPriority(ClientPriority client_priority);
} // namespace display_coordinator
#endif // SRC_GRAPHICS_DISPLAY_DRIVERS_COORDINATOR_CLIENT_PRIORITY_H_