blob: 7347ba275d02b17e1c81e24c780fb2cfdff3bd7f [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_LIB_API_TYPES_CPP_DRIVER_LAYER_ID_H_
#define SRC_GRAPHICS_DISPLAY_LIB_API_TYPES_CPP_DRIVER_LAYER_ID_H_
#include <cstdint>
#include <fbl/strong_int.h>
namespace display {
// More useful representation of `fuchsia.hardware.display.coordinator/LayerIdValue`.
//
// See `LayerId` for the type used at the interface between the display
// coordinator and clients such as Scenic.
DEFINE_STRONG_INT(DriverLayerId, uint64_t);
} // namespace display
#endif // SRC_GRAPHICS_DISPLAY_LIB_API_TYPES_CPP_DRIVER_LAYER_ID_H_