blob: dbf89fd43bf79f333b323fd547afeff244cf7d4a [file]
// Copyright 2025 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
#![allow(missing_docs, reason = "Not needed for benchmarks")]
#![allow(dead_code, reason = "Might be unused on platforms not supporting SIMD")]
use std::path::PathBuf;
use std::sync::LazyLock;
pub mod data;
pub mod fine;
pub mod flatten;
pub mod glyph;
pub mod integration;
pub mod strip;
pub mod tile;
pub(crate) const SEED: [u8; 32] = [0; 32];
pub static DATA_PATH: LazyLock<PathBuf> =
LazyLock::new(|| PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("data"));