fuchsia_scenic/
lib.rs

1// Copyright 2018 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
5pub mod flatland;
6mod sysmem;
7mod view_ref_pair;
8mod view_token_pair;
9pub use self::sysmem::*;
10pub use self::view_ref_pair::*;
11pub use self::view_token_pair::*;
12
13use fidl_fuchsia_ui_display_color as _;
14
15#[derive(Copy, Clone, PartialEq, Debug)]
16pub enum DisplayRotation {
17    None = 0,
18    By90Degrees = 90,
19    By180Degrees = 180,
20    By270Degrees = 270,
21}