blob: 6e789e4891d97aa50583936b9993c2dc78118027 [file]
// Copyright 2025 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! This crate implements a CPU-based renderer, optimized for SIMD and multithreaded execution.
//! It is optimized for CPU-bound workloads and serves as a standalone renderer for systems
//! without GPU acceleration.
#![expect(
clippy::cast_possible_truncation,
reason = "We cast u16s to u8 in various places where we know for sure that it's < 256"
)]
#![no_std]
extern crate alloc;
mod render;
#[doc(hidden)]
/// This is an internal module, do not access directly.
pub mod fine;
mod util;
pub use render::RenderContext;
pub use vello_common::pixmap::Pixmap;