scene_management/
lib.rs

1// Copyright 2019 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
5mod display_metrics;
6mod graphics_utils;
7mod pointerinjector_config;
8mod scene_manager;
9
10pub use display_metrics::{DisplayMetrics, ViewingDistance};
11pub use graphics_utils::{ScreenCoordinates, ScreenSize};
12pub use pointerinjector_config::InjectorViewportSubscriber;
13pub use scene_manager::{
14    handle_pointer_injector_configuration_setup_request_stream, SceneManager, SceneManagerTrait,
15};