blob: 9a364257316402c27e0ab2333f3975ed8633423a [file] [log] [blame] [edit]
// 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!()
}