blob: 8fab3caa3e4b7b56ac25058cc4e37890706c0825 [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_IMAGE_ID_H_
#define SRC_GRAPHICS_DISPLAY_LIB_API_TYPES_CPP_IMAGE_ID_H_
#include <fidl/fuchsia.hardware.display/cpp/wire.h>
#include <cstdint>
#include <fbl/strong_int.h>
namespace display {
// More useful representation of `fuchsia.hardware.display/ImageId`.
//
// See `DriverImageId` for the type used at the interface between the display
// coordinator and the display drivers.
DEFINE_STRONG_INT(ImageId, uint64_t);
constexpr ImageId ToImageId(fuchsia_hardware_display::wire::ImageId fidl_image_id) {
return ImageId(fidl_image_id.value);
}
constexpr fuchsia_hardware_display::wire::ImageId ToFidlImageId(ImageId image_id) {
return {.value = image_id.value()};
}
constexpr ImageId kInvalidImageId(fuchsia_hardware_display_types::wire::kInvalidDispId);
} // namespace display
#endif // SRC_GRAPHICS_DISPLAY_LIB_API_TYPES_CPP_IMAGE_ID_H_