| // Copyright 2025 the Vello Authors |
| // SPDX-License-Identifier: Apache-2.0 OR MIT |
| |
| use crate::data::get_data_items; |
| use crate::strip::shift_lines_50_percent; |
| use criterion::{BenchmarkId, Criterion}; |
| use vello_common::flatten::Line; |
| use vello_common::tile::Tiles; |
| use vello_cpu::Level; |
| |
| fn run_tile_benchmark<const SHIFT: bool, F>(c: &mut Criterion, group_name: &str, mut op: F) |
| where |
| F: FnMut(&mut Tiles, &[Line], u16, u16), |
| { |
| let mut g = c.benchmark_group(group_name); |
| g.sample_size(50); |
| |
| for item in get_data_items() { |
| let lines = if SHIFT { |
| shift_lines_50_percent(&item.lines()) |
| } else { |
| item.lines() |
| }; |
| |
| g.bench_with_input(BenchmarkId::from_parameter(&item.name), &item, |b, item| { |
| b.iter(|| { |
| let mut tiler = Tiles::new(Level::new(), item.width, item.height); |
| op(&mut tiler, &lines, item.width, item.height); |
| }); |
| }); |
| } |
| g.finish(); |
| } |
| |
| pub fn tile(c: &mut Criterion) { |
| run_tile_benchmark::<false, _>(c, "tile_aaa", |tiler, lines, w, h| { |
| tiler.make_tiles_analytic_aa(Level::new(), lines, w, h); |
| }); |
| |
| run_tile_benchmark::<false, _>(c, "tile_msaa", |tiler, lines, w, h| { |
| tiler.make_tiles_msaa(lines, w, h); |
| }); |
| |
| run_tile_benchmark::<true, _>(c, "tile_aaa_shift50", |tiler, lines, w, h| { |
| tiler.make_tiles_analytic_aa(Level::new(), lines, w, h); |
| }); |
| } |