blob: 32a48feac05401fc7476c4dad5d1b3dc61add087 [file] [log] [blame]
// Copyright 2022 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
use anyhow::Result;
fn main() -> Result<()> {
#[cfg(not(target_os = "android"))]
{
with_winit::main()
}
#[cfg(target_os = "android")]
unreachable!()
}