| // Copyright 2025 the Vello Authors |
| // SPDX-License-Identifier: Apache-2.0 OR MIT |
| |
| //! Tests for basic functionality. |
| |
| use crate::renderer::Renderer; |
| use crate::util::{circular_star, crossed_line_star, miter_stroke_2}; |
| use std::f64::consts::PI; |
| use vello_common::color::palette::css::{ |
| BEIGE, BLUE, DARK_BLUE, GREEN, LIME, MAROON, REBECCA_PURPLE, RED, TRANSPARENT, |
| }; |
| use vello_common::kurbo::{Affine, BezPath, Circle, Join, Point, Rect, Shape, Stroke}; |
| use vello_common::peniko::Fill; |
| use vello_dev_macros::vello_test; |
| |
| #[vello_test(width = 8, height = 8)] |
| fn full_cover_1(ctx: &mut impl Renderer) { |
| ctx.set_paint(BEIGE); |
| ctx.fill_path(&Rect::new(0.0, 0.0, 8.0, 8.0).to_path(0.1)); |
| } |
| |
| #[vello_test(transparent)] |
| fn transparent_paint(ctx: &mut impl Renderer) { |
| let path = { |
| let mut path = BezPath::new(); |
| path.move_to((5.0, 5.0)); |
| path.line_to((95.0, 50.0)); |
| path.line_to((5.0, 95.0)); |
| path.close_path(); |
| |
| path |
| }; |
| |
| ctx.set_paint(TRANSPARENT); |
| ctx.fill_path(&path); |
| ctx.stroke_path(&path); |
| } |
| |
| #[vello_test] |
| fn filled_triangle(ctx: &mut impl Renderer) { |
| let path = { |
| let mut path = BezPath::new(); |
| path.move_to((5.0, 5.0)); |
| path.line_to((95.0, 50.0)); |
| path.line_to((5.0, 95.0)); |
| path.close_path(); |
| |
| path |
| }; |
| |
| ctx.set_paint(LIME); |
| ctx.fill_path(&path); |
| } |
| |
| #[vello_test] |
| fn stroked_triangle(ctx: &mut impl Renderer) { |
| let path = { |
| let mut path = BezPath::new(); |
| path.move_to((5.0, 5.0)); |
| path.line_to((95.0, 50.0)); |
| path.line_to((5.0, 95.0)); |
| path.close_path(); |
| |
| path |
| }; |
| |
| ctx.set_stroke(Stroke::new(3.0)); |
| ctx.set_paint(LIME); |
| ctx.stroke_path(&path); |
| } |
| |
| #[vello_test] |
| fn filled_circle(ctx: &mut impl Renderer) { |
| let circle = Circle::new((50.0, 50.0), 45.0); |
| ctx.set_paint(LIME); |
| ctx.fill_path(&circle.to_path(0.1)); |
| } |
| |
| #[vello_test] |
| fn filled_overflowing_circle(ctx: &mut impl Renderer) { |
| let circle = Circle::new((50.0, 50.0), 50.0 + 1.0); |
| |
| ctx.set_paint(LIME); |
| ctx.fill_path(&circle.to_path(0.1)); |
| } |
| |
| #[vello_test] |
| fn filled_fully_overflowing_circle(ctx: &mut impl Renderer) { |
| let circle = Circle::new((50.0, 50.0), 80.0); |
| |
| ctx.set_paint(LIME); |
| ctx.fill_path(&circle.to_path(0.1)); |
| } |
| |
| #[vello_test] |
| fn filled_circle_with_opacity(ctx: &mut impl Renderer) { |
| let circle = Circle::new((50.0, 50.0), 45.0); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_path(&circle.to_path(0.1)); |
| } |
| |
| #[vello_test(cpu_u8_tolerance = 1)] |
| fn filled_overlapping_circles(ctx: &mut impl Renderer) { |
| for e in [(35.0, 35.0, RED), (65.0, 35.0, GREEN), (50.0, 65.0, BLUE)] { |
| let circle = Circle::new((e.0, e.1), 30.0); |
| ctx.set_paint(e.2.with_alpha(0.5)); |
| ctx.fill_path(&circle.to_path(0.1)); |
| } |
| } |
| |
| #[vello_test] |
| fn stroked_circle(ctx: &mut impl Renderer) { |
| let circle = Circle::new((50.0, 50.0), 45.0); |
| let stroke = Stroke::new(3.0); |
| |
| ctx.set_paint(LIME); |
| ctx.set_stroke(stroke); |
| ctx.stroke_path(&circle.to_path(0.1)); |
| } |
| |
| /// Requires winding of the first row of tiles to be calculcated correctly for vertical lines. |
| #[vello_test(width = 10, height = 10)] |
| fn rectangle_above_viewport(ctx: &mut impl Renderer) { |
| let rect = Rect::new(2.0, -5.0, 8.0, 8.0); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| /// Requires winding of the first row of tiles to be calculcated correctly for sloped lines. |
| #[vello_test(width = 10, height = 10)] |
| fn triangle_above_and_wider_than_viewport(ctx: &mut impl Renderer) { |
| let path = { |
| let mut path = BezPath::new(); |
| path.move_to((5.0, -5.0)); |
| path.line_to((14., 6.)); |
| path.line_to((-8., 6.)); |
| path.close_path(); |
| |
| path |
| }; |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_path(&path); |
| } |
| |
| /// Requires winding and pixel coverage to be calculcated correctly for tiles preceding the |
| /// viewport in scan direction. |
| #[vello_test(width = 10, height = 10)] |
| fn rectangle_left_of_viewport(ctx: &mut impl Renderer) { |
| let rect = Rect::new(-4.0, 3.0, 1.0, 8.0); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test] |
| fn filling_nonzero_rule(ctx: &mut impl Renderer) { |
| let star = crossed_line_star(); |
| |
| ctx.set_paint(MAROON); |
| ctx.fill_path(&star); |
| } |
| |
| #[vello_test] |
| fn filling_evenodd_rule(ctx: &mut impl Renderer) { |
| let star = crossed_line_star(); |
| |
| ctx.set_paint(MAROON); |
| ctx.set_fill_rule(Fill::EvenOdd); |
| ctx.fill_path(&star); |
| } |
| |
| #[vello_test(width = 30, height = 20)] |
| fn filled_aligned_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(1.0, 1.0, 29.0, 19.0); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn stroked_unaligned_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(5.0, 5.0, 25.0, 25.0); |
| let stroke = Stroke { |
| width: 1.0, |
| join: Join::Miter, |
| ..Default::default() |
| }; |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn stroked_unaligned_rect_as_path(ctx: &mut impl Renderer) { |
| let rect = Rect::new(5.0, 5.0, 25.0, 25.0).to_path(0.1); |
| let stroke = Stroke { |
| width: 1.0, |
| join: Join::Miter, |
| ..Default::default() |
| }; |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_path(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn stroked_aligned_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(5.0, 5.0, 25.0, 25.0); |
| let stroke = miter_stroke_2(); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn overflowing_stroked_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(12.5, 12.5, 17.5, 17.5); |
| let stroke = Stroke { |
| width: 5.0, |
| join: Join::Miter, |
| ..Default::default() |
| }; |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn round_stroked_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(5.0, 5.0, 25.0, 25.0); |
| let stroke = Stroke::new(3.0); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn bevel_stroked_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(5.0, 5.0, 25.0, 25.0); |
| let stroke = Stroke { |
| width: 3.0, |
| join: Join::Bevel, |
| ..Default::default() |
| }; |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 20)] |
| fn filled_unaligned_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(1.5, 1.5, 28.5, 18.5); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn filled_transformed_rect_1(ctx: &mut impl Renderer) { |
| let rect = Rect::new(0.0, 0.0, 10.0, 10.0); |
| |
| ctx.set_transform(Affine::translate((10.0, 10.0))); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn filled_transformed_rect_2(ctx: &mut impl Renderer) { |
| let rect = Rect::new(5.0, 5.0, 10.0, 10.0); |
| |
| ctx.set_transform(Affine::scale(2.0)); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn filled_transformed_rect_3(ctx: &mut impl Renderer) { |
| let rect = Rect::new(0.0, 0.0, 10.0, 10.0); |
| |
| ctx.set_transform(Affine::new([2.0, 0.0, 0.0, 2.0, 5.0, 5.0])); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn filled_transformed_rect_4(ctx: &mut impl Renderer) { |
| let rect = Rect::new(10.0, 10.0, 20.0, 20.0); |
| |
| ctx.set_transform(Affine::rotate_about( |
| 45.0 * PI / 180.0, |
| Point::new(15.0, 15.0), |
| )); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn stroked_transformed_rect_1(ctx: &mut impl Renderer) { |
| let rect = Rect::new(0.0, 0.0, 10.0, 10.0); |
| let stroke = miter_stroke_2(); |
| |
| ctx.set_transform(Affine::translate((10.0, 10.0))); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn stroked_transformed_rect_2(ctx: &mut impl Renderer) { |
| let rect = Rect::new(5.0, 5.0, 10.0, 10.0); |
| let stroke = miter_stroke_2(); |
| |
| ctx.set_transform(Affine::scale(2.0)); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn stroked_transformed_rect_3(ctx: &mut impl Renderer) { |
| let rect = Rect::new(0.0, 0.0, 10.0, 10.0); |
| let stroke = miter_stroke_2(); |
| |
| ctx.set_transform(Affine::new([2.0, 0.0, 0.0, 2.0, 5.0, 5.0])); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 30)] |
| fn stroked_transformed_rect_4(ctx: &mut impl Renderer) { |
| let rect = Rect::new(10.0, 10.0, 20.0, 20.0); |
| let stroke = miter_stroke_2(); |
| |
| ctx.set_transform(Affine::rotate_about( |
| 45.0 * PI / 180.0, |
| Point::new(15.0, 15.0), |
| )); |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.set_stroke(stroke); |
| ctx.stroke_rect(&rect); |
| } |
| |
| #[vello_test(width = 30, height = 20)] |
| fn strip_inscribed_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(1.5, 9.5, 28.5, 11.5); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 5, height = 8)] |
| fn filled_vertical_hairline_rect(ctx: &mut impl Renderer) { |
| let rect = Rect::new(2.25, 0.0, 2.75, 8.0); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test(width = 10, height = 10)] |
| fn filled_vertical_hairline_rect_2(ctx: &mut impl Renderer) { |
| let rect = Rect::new(4.5, 0.5, 5.5, 9.5); |
| |
| ctx.set_paint(REBECCA_PURPLE.with_alpha(0.5)); |
| ctx.fill_rect(&rect); |
| } |
| |
| #[vello_test] |
| fn oversized_star(ctx: &mut impl Renderer) { |
| // Create a star path that extends beyond the render context boundaries |
| // Center it in the middle of the viewport |
| let star_path = circular_star(Point::new(50., 50.), 10, 30., 90.); |
| |
| ctx.set_paint(REBECCA_PURPLE); |
| ctx.fill_path(&star_path); |
| |
| let stroke = Stroke::new(2.0); |
| ctx.set_paint(DARK_BLUE); |
| ctx.set_stroke(stroke); |
| ctx.stroke_path(&star_path); |
| } |