scene_management/lib.rs
// Copyright 2019 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.
mod display_metrics;
mod graphics_utils;
mod pointerinjector_config;
mod scene_manager;
pub use display_metrics::{DisplayMetrics, ViewingDistance};
pub use graphics_utils::{ScreenCoordinates, ScreenSize};
pub use pointerinjector_config::InjectorViewportSubscriber;
pub use scene_manager::{
handle_pointer_injector_configuration_setup_request_stream, SceneManager, SceneManagerTrait,
};