| // Copyright 2022 the Vello Authors | |
| // SPDX-License-Identifier: Apache-2.0 OR MIT | |
| //! Winit example. | |
| use anyhow::Result; | |
| fn main() -> Result<()> { | |
| #[cfg(not(target_os = "android"))] | |
| { | |
| with_winit::main() | |
| } | |
| #[cfg(target_os = "android")] | |
| unreachable!() | |
| } |