display_utils/
lib.rs

1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#![deny(missing_docs)]
6
7//! This crate provides utilities for the Fuchsia display-coordinator API.
8
9/// Custom error definitions for `fuchsia.hardware.display` and sysmem API functions.
10mod error;
11
12/// The `types` module defines convenions wrappers for FIDL data types in the
13/// `fuchsia.hardware.display` library.
14mod types;
15
16/// Stateless representation of a display configuration.
17mod config;
18
19/// Helper functions setting up shared image buffers that can be assigned to display layers.
20mod image;
21
22/// The `Controller` type is a client-side abstraction for the `fuchsia.hardware.display.Controller`
23/// protocol.
24mod controller;
25
26/// Rust bindings bridging fuchsia sysmem PixelFormatType and images2 PixelFormat types.
27mod pixel_format;
28
29pub use config::*;
30pub use controller::{Coordinator, VsyncEvent};
31pub use error::*;
32pub use image::*;
33pub use pixel_format::{get_bytes_per_pixel, PixelFormat};
34pub use types::*;