├── .cargo └── config.toml ├── .clippy.toml ├── .gitattributes ├── .github ├── copyright.sh └── workflows │ ├── ci.yml │ └── web-demo.yml ├── .gitignore ├── .taplo.toml ├── .typos.toml ├── .vscode └── settings.json ├── AUTHORS ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── doc ├── ARCHITECTURE.md ├── blogs.md ├── images │ └── piet-gpu-diagram.jpg ├── pathseg.md ├── roadmap_2023.md └── vision.md ├── examples ├── assets │ ├── Ghostscript_Tiger.svg │ ├── colr_test_glyphs │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── test_glyphs-glyf_colr_1.ttf │ ├── downloads │ │ └── .tracked │ ├── inconsolata │ │ ├── Inconsolata.ttf │ │ └── LICENSE.txt │ ├── noto_color_emoji │ │ ├── LICENSE.txt │ │ ├── NotoColorEmoji-CBTF-Subset.ttf │ │ ├── NotoColorEmoji-Subset.ttf │ │ └── README.md │ ├── roboto │ │ ├── LICENSE.txt │ │ └── Roboto-Regular.ttf │ └── splash-flower.jpg ├── headless │ ├── Cargo.toml │ ├── outputs │ │ └── .tracked │ └── src │ │ └── main.rs ├── run_wasm │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── scenes │ ├── Cargo.toml │ └── src │ │ ├── images.rs │ │ ├── lib.rs │ │ ├── mmark.rs │ │ ├── pico_svg.rs │ │ ├── simple_text.rs │ │ ├── svg.rs │ │ └── test_scenes.rs ├── simple │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── simple_sdl2 │ ├── Cargo.toml │ └── src │ │ └── main.rs └── with_winit │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── hot_reload.rs │ ├── lib.rs │ ├── main.rs │ ├── minimal_pipeline_cache.rs │ ├── multi_touch.rs │ └── stats.rs ├── image_filters ├── README.md └── vello_filters_cpu │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ └── lib.rs ├── rustfmt.toml ├── sparse_strips ├── README.md ├── vello_api │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ └── lib.rs ├── vello_bench │ ├── Cargo.toml │ ├── README.md │ ├── benches │ │ └── main.rs │ ├── data │ │ └── .gitignore │ └── src │ │ ├── data.rs │ │ ├── fine │ │ ├── blend.rs │ │ ├── fill.rs │ │ ├── gradient.rs │ │ ├── image.rs │ │ ├── mod.rs │ │ ├── pack.rs │ │ ├── rounded_blurred_rect.rs │ │ └── strip.rs │ │ ├── flatten.rs │ │ ├── glyph.rs │ │ ├── lib.rs │ │ ├── strip.rs │ │ └── tile.rs ├── vello_common │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── blurred_rounded_rect.rs │ │ ├── clip.rs │ │ ├── coarse.rs │ │ ├── colr.rs │ │ ├── encode.rs │ │ ├── filter_effects.rs │ │ ├── flatten.rs │ │ ├── flatten_simd.rs │ │ ├── glyph.rs │ │ ├── lib.rs │ │ ├── mask.rs │ │ ├── math.rs │ │ ├── paint.rs │ │ ├── pico_svg.rs │ │ ├── pixmap.rs │ │ ├── recording.rs │ │ ├── render_graph.rs │ │ ├── simd.rs │ │ ├── strip.rs │ │ ├── strip_generator.rs │ │ ├── tile.rs │ │ └── util.rs ├── vello_cpu │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── examples │ │ ├── basic.rs │ │ ├── clipping.rs │ │ ├── masking.rs │ │ ├── paints.rs │ │ ├── wasm_cpu │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ └── main.rs │ │ └── winit │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ └── src │ │ │ └── main.rs │ └── src │ │ ├── dispatch │ │ ├── mod.rs │ │ ├── multi_threaded.rs │ │ ├── multi_threaded │ │ │ ├── cost.rs │ │ │ └── worker.rs │ │ └── single_threaded.rs │ │ ├── filter │ │ ├── drop_shadow.rs │ │ ├── flood.rs │ │ ├── gaussian_blur.rs │ │ └── mod.rs │ │ ├── fine │ │ ├── common │ │ │ ├── gradient │ │ │ │ ├── linear.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── radial.rs │ │ │ │ └── sweep.rs │ │ │ ├── image.rs │ │ │ ├── mod.rs │ │ │ └── rounded_blurred_rect.rs │ │ ├── highp │ │ │ ├── blend.rs │ │ │ ├── compose.rs │ │ │ └── mod.rs │ │ ├── lowp │ │ │ ├── compose.rs │ │ │ ├── gradient.rs │ │ │ ├── image.rs │ │ │ └── mod.rs │ │ └── mod.rs │ │ ├── layer_manager.rs │ │ ├── lib.rs │ │ ├── region.rs │ │ ├── render.rs │ │ └── util.rs ├── vello_dev_macros │ ├── Cargo.toml │ └── src │ │ ├── bench.rs │ │ ├── lib.rs │ │ └── test.rs ├── vello_example_scenes │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── blend.rs │ │ ├── clip.rs │ │ ├── filter.rs │ │ ├── gradient.rs │ │ ├── image.rs │ │ ├── lib.rs │ │ ├── path.rs │ │ ├── simple.rs │ │ ├── svg.rs │ │ └── text.rs ├── vello_hybrid │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── examples │ │ ├── native_webgl │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── src │ │ │ │ ├── lib.rs │ │ │ │ └── main.rs │ │ │ └── tests │ │ │ │ └── webgl.rs │ │ ├── render_to_file.rs │ │ ├── wgpu_webgl │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── src │ │ │ │ ├── lib.rs │ │ │ │ └── main.rs │ │ │ └── tests │ │ │ │ └── webgl.rs │ │ └── winit │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ └── src │ │ │ ├── main.rs │ │ │ └── render_context.rs │ └── src │ │ ├── gradient_cache.rs │ │ ├── image_cache.rs │ │ ├── lib.rs │ │ ├── multi_atlas.rs │ │ ├── render │ │ ├── common.rs │ │ ├── mod.rs │ │ ├── webgl.rs │ │ └── wgpu.rs │ │ ├── scene.rs │ │ ├── schedule.rs │ │ └── util.rs ├── vello_sparse_shaders │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── build.rs │ ├── shaders │ │ ├── clear_slots.wgsl │ │ └── render_strips.wgsl │ └── src │ │ ├── compile.rs │ │ ├── lib.rs │ │ └── types.rs ├── vello_sparse_tests │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── snapshots │ │ ├── basic_alpha_compositing.png │ │ ├── bevel_stroked_rect.png │ │ ├── blurred_rounded_rect_large_std_dev.png │ │ ├── blurred_rounded_rect_medium_std_dev.png │ │ ├── blurred_rounded_rect_none.png │ │ ├── blurred_rounded_rect_small_std_dev.png │ │ ├── blurred_rounded_rect_with_large_radius.png │ │ ├── blurred_rounded_rect_with_radius.png │ │ ├── blurred_rounded_rect_with_transform.png │ │ ├── clip_clear.png │ │ ├── clip_deeply_nested_circles.png │ │ ├── clip_non_isolated_deeply_nested_circles.png │ │ ├── clip_non_isolated_outside_canvas.png │ │ ├── clip_non_isolated_rectangle_with_star_evenodd.png │ │ ├── clip_rectangle_and_circle.png │ │ ├── clip_rectangle_with_star_evenodd.png │ │ ├── clip_rectangle_with_star_nonzero.png │ │ ├── clip_single_wide_tile.png │ │ ├── clip_transformed_rect.png │ │ ├── clip_triangle_with_star.png │ │ ├── clip_with_multiple_transforms.png │ │ ├── clip_with_opacity.png │ │ ├── clip_with_rotate.png │ │ ├── clip_with_save_restore.png │ │ ├── clip_with_scale.png │ │ ├── clip_with_translation.png │ │ ├── clip_wrong_command.png │ │ ├── complex_composed_layers.png │ │ ├── compose_clear.png │ │ ├── compose_copy.png │ │ ├── compose_dest.png │ │ ├── compose_dest_atop.png │ │ ├── compose_dest_in.png │ │ ├── compose_dest_out.png │ │ ├── compose_dest_over.png │ │ ├── compose_non_isolated_clear.png │ │ ├── compose_non_isolated_copy.png │ │ ├── compose_non_isolated_dest.png │ │ ├── compose_non_isolated_dest_atop.png │ │ ├── compose_non_isolated_dest_in.png │ │ ├── compose_non_isolated_dest_out.png │ │ ├── compose_non_isolated_dest_over.png │ │ ├── compose_non_isolated_plus.png │ │ ├── compose_non_isolated_src_atop.png │ │ ├── compose_non_isolated_src_in.png │ │ ├── compose_non_isolated_src_out.png │ │ ├── compose_non_isolated_src_over.png │ │ ├── compose_non_isolated_xor.png │ │ ├── compose_plus.png │ │ ├── compose_src_atop.png │ │ ├── compose_src_in.png │ │ ├── compose_src_out.png │ │ ├── compose_src_over.png │ │ ├── compose_wide_tile_nested.png │ │ ├── compose_xor.png │ │ ├── composed_layers_nesting.png │ │ ├── deep_compose.png │ │ ├── eo_filling_missing_anti_aliasing.png │ │ ├── fill_command_respects_clip_bounds.png │ │ ├── filled_aligned_rect.png │ │ ├── filled_circle.png │ │ ├── filled_circle_with_opacity.png │ │ ├── filled_fully_overflowing_circle.png │ │ ├── filled_overflowing_circle.png │ │ ├── filled_overlapping_circles.png │ │ ├── filled_transformed_rect_1.png │ │ ├── filled_transformed_rect_2.png │ │ ├── filled_transformed_rect_3.png │ │ ├── filled_transformed_rect_4.png │ │ ├── filled_triangle.png │ │ ├── filled_unaligned_rect.png │ │ ├── filled_vertical_hairline_rect.png │ │ ├── filled_vertical_hairline_rect_2.png │ │ ├── filling_evenodd_rule.png │ │ ├── filling_nonzero_rule.png │ │ ├── filling_unclosed_path_1.png │ │ ├── filling_unclosed_path_2.png │ │ ├── filter_drop_shadow.png │ │ ├── filter_drop_shadow_corners.png │ │ ├── filter_flood.png │ │ ├── filter_gaussian_blur_no_decimation.png │ │ ├── filter_gaussian_blur_with_decimation.png │ │ ├── filter_set_effect.png │ │ ├── filter_varying_depths_clips_and_compositions.png │ │ ├── full_cover_1.png │ │ ├── glyph_recording_outside_transform.png │ │ ├── glyphs_bitmap_apple.png │ │ ├── glyphs_bitmap_noto.png │ │ ├── glyphs_colr_noto.png │ │ ├── glyphs_colr_test_glyphs.png │ │ ├── glyphs_filled.png │ │ ├── glyphs_filled_unhinted.png │ │ ├── glyphs_glyph_transform.png │ │ ├── glyphs_glyph_transform_unhinted.png │ │ ├── glyphs_scaled.png │ │ ├── glyphs_scaled_unhinted.png │ │ ├── glyphs_skewed.png │ │ ├── glyphs_skewed_long.png │ │ ├── glyphs_skewed_long_unhinted.png │ │ ├── glyphs_skewed_unhinted.png │ │ ├── glyphs_skewed_unskewed.png │ │ ├── glyphs_skewed_unskewed_unhinted.png │ │ ├── glyphs_small.png │ │ ├── glyphs_small_unhinted.png │ │ ├── glyphs_stroked.png │ │ ├── glyphs_stroked_unhinted.png │ │ ├── gradient_color_alpha.png │ │ ├── gradient_color_alpha_unmul.png │ │ ├── gradient_linear_2_stops.png │ │ ├── gradient_linear_2_stops_with_alpha.png │ │ ├── gradient_linear_4_stops.png │ │ ├── gradient_linear_complex_shape.png │ │ ├── gradient_linear_negative_direction.png │ │ ├── gradient_linear_spread_method_pad.png │ │ ├── gradient_linear_spread_method_reflect.png │ │ ├── gradient_linear_spread_method_repeat.png │ │ ├── gradient_linear_vertical.png │ │ ├── gradient_linear_with_downward_y.png │ │ ├── gradient_linear_with_transform_identity.png │ │ ├── gradient_linear_with_transform_negative_scale.png │ │ ├── gradient_linear_with_transform_rotate_1.png │ │ ├── gradient_linear_with_transform_rotate_2.png │ │ ├── gradient_linear_with_transform_scale.png │ │ ├── gradient_linear_with_transform_scale_and_translate.png │ │ ├── gradient_linear_with_transform_scaling_non_uniform.png │ │ ├── gradient_linear_with_transform_skew_x_1.png │ │ ├── gradient_linear_with_transform_skew_x_2.png │ │ ├── gradient_linear_with_transform_skew_y_1.png │ │ ├── gradient_linear_with_transform_skew_y_2.png │ │ ├── gradient_linear_with_transform_translate.png │ │ ├── gradient_linear_with_upward_y.png │ │ ├── gradient_linear_with_y_reflect.png │ │ ├── gradient_linear_with_y_repeat.png │ │ ├── gradient_on_3_wide_tiles.png │ │ ├── gradient_padded_first_stop.png │ │ ├── gradient_padded_last_stop.png │ │ ├── gradient_padded_stops.png │ │ ├── gradient_radial_2_stops.png │ │ ├── gradient_radial_2_stops_with_alpha.png │ │ ├── gradient_radial_4_stops.png │ │ ├── gradient_radial_c0_bigger.png │ │ ├── gradient_radial_center_offset_bottom_left.png │ │ ├── gradient_radial_center_offset_bottom_right.png │ │ ├── gradient_radial_center_offset_top_left.png │ │ ├── gradient_radial_center_offset_top_right.png │ │ ├── gradient_radial_complex_shape.png │ │ ├── gradient_radial_focal_on_circle.png │ │ ├── gradient_radial_inside.png │ │ ├── gradient_radial_natively_focal.png │ │ ├── gradient_radial_non_overlapping_c0_larger.png │ │ ├── gradient_radial_non_overlapping_c0_smaller.png │ │ ├── gradient_radial_non_overlapping_cone.png │ │ ├── gradient_radial_non_overlapping_same_size.png │ │ ├── gradient_radial_outside.png │ │ ├── gradient_radial_smaller_r1_with_reflect.png │ │ ├── gradient_radial_spread_method_pad.png │ │ ├── gradient_radial_spread_method_reflect.png │ │ ├── gradient_radial_spread_method_repeat.png │ │ ├── gradient_radial_swapped.png │ │ ├── gradient_radial_with_transform_identity.png │ │ ├── gradient_radial_with_transform_negative_scale.png │ │ ├── gradient_radial_with_transform_rotate_1.png │ │ ├── gradient_radial_with_transform_rotate_2.png │ │ ├── gradient_radial_with_transform_scale.png │ │ ├── gradient_radial_with_transform_scale_and_translate.png │ │ ├── gradient_radial_with_transform_scale_non_uniform.png │ │ ├── gradient_radial_with_transform_skew_x_1.png │ │ ├── gradient_radial_with_transform_skew_x_2.png │ │ ├── gradient_radial_with_transform_skew_y_1.png │ │ ├── gradient_radial_with_transform_skew_y_2.png │ │ ├── gradient_radial_with_transform_translate.png │ │ ├── gradient_sweep_2_stops.png │ │ ├── gradient_sweep_2_stops_with_alpha.png │ │ ├── gradient_sweep_4_stops.png │ │ ├── gradient_sweep_complex_shape.png │ │ ├── gradient_sweep_not_in_center.png │ │ ├── gradient_sweep_spread_method_pad.png │ │ ├── gradient_sweep_spread_method_reflect.png │ │ ├── gradient_sweep_spread_method_repeat.png │ │ ├── gradient_sweep_with_transform_identity.png │ │ ├── gradient_sweep_with_transform_negative_scale.png │ │ ├── gradient_sweep_with_transform_rotate_1.png │ │ ├── gradient_sweep_with_transform_rotate_2.png │ │ ├── gradient_sweep_with_transform_scale.png │ │ ├── gradient_sweep_with_transform_scale_and_translate.png │ │ ├── gradient_sweep_with_transform_scale_non_uniform.png │ │ ├── gradient_sweep_with_transform_skew_x_1.png │ │ ├── gradient_sweep_with_transform_skew_x_2.png │ │ ├── gradient_sweep_with_transform_skew_y_1.png │ │ ├── gradient_sweep_with_transform_skew_y_2.png │ │ ├── gradient_sweep_with_transform_translate.png │ │ ├── gradient_with_color_spaces_1.png │ │ ├── gradient_with_color_spaces_2.png │ │ ├── gradient_with_color_spaces_3.png │ │ ├── gradient_with_global_alpha.png │ │ ├── image_bicubic_10x_scale.png │ │ ├── image_bicubic_10x_scale_2.png │ │ ├── image_bicubic_2x_scale.png │ │ ├── image_bicubic_5x_scale.png │ │ ├── image_bicubic_identity.png │ │ ├── image_bicubic_with_rotation.png │ │ ├── image_bicubic_with_translation.png │ │ ├── image_bilinear_10x_scale.png │ │ ├── image_bilinear_10x_scale_2.png │ │ ├── image_bilinear_2x_scale.png │ │ ├── image_bilinear_5x_scale.png │ │ ├── image_bilinear_identity.png │ │ ├── image_bilinear_with_rotation.png │ │ ├── image_bilinear_with_translation.png │ │ ├── image_complex_shape.png │ │ ├── image_global_alpha.png │ │ ├── image_luma_image.png │ │ ├── image_lumaa_image.png │ │ ├── image_pad_x_pad_y.png │ │ ├── image_pad_x_repeat_y.png │ │ ├── image_reflect_x_pad_y.png │ │ ├── image_reflect_x_reflect_y.png │ │ ├── image_repeat_x_repeat_y.png │ │ ├── image_rgb_image.png │ │ ├── image_rgba_image.png │ │ ├── image_with_multiple_clip_layers.png │ │ ├── image_with_opacity.png │ │ ├── image_with_transform_identity.png │ │ ├── image_with_transform_negative_scale.png │ │ ├── image_with_transform_rotate_1.png │ │ ├── image_with_transform_rotate_2.png │ │ ├── image_with_transform_scale.png │ │ ├── image_with_transform_scale_and_translate.png │ │ ├── image_with_transform_scaling_non_uniform.png │ │ ├── image_with_transform_skew_x_1.png │ │ ├── image_with_transform_skew_x_2.png │ │ ├── image_with_transform_skew_y_1.png │ │ ├── image_with_transform_skew_y_2.png │ │ ├── image_with_transform_translate.png │ │ ├── incorrect_filling_1.png │ │ ├── incorrect_filling_2.png │ │ ├── incorrect_filling_3.png │ │ ├── incorrect_filling_4.png │ │ ├── incorrect_filling_5.png │ │ ├── incorrect_filling_6.png │ │ ├── incorrect_filling_7.png │ │ ├── incorrect_filling_8.png │ │ ├── layer_multiple_properties_1.png │ │ ├── mask_alpha.png │ │ ├── mask_luminance.png │ │ ├── mask_non_isolated.png │ │ ├── mix_color.png │ │ ├── mix_color_burn.png │ │ ├── mix_color_dodge.png │ │ ├── mix_color_with_solid.png │ │ ├── mix_compose_combined_test_matrix.png │ │ ├── mix_darken.png │ │ ├── mix_difference.png │ │ ├── mix_exclusion.png │ │ ├── mix_hard_light.png │ │ ├── mix_hue.png │ │ ├── mix_lighten.png │ │ ├── mix_luminosity.png │ │ ├── mix_modes_non_gradient_test_matrix.png │ │ ├── mix_multiply.png │ │ ├── mix_non_isolated_color_dodge.png │ │ ├── mix_non_isolated_difference.png │ │ ├── mix_non_isolated_soft_light.png │ │ ├── mix_normal.png │ │ ├── mix_overlay.png │ │ ├── mix_saturation.png │ │ ├── mix_saturation_with_solid.png │ │ ├── mix_screen.png │ │ ├── mix_soft_light.png │ │ ├── mix_with_transparent_bg.png │ │ ├── nested_clip_path_panic_2.png │ │ ├── no_anti_aliasing.png │ │ ├── no_anti_aliasing_clip_path.png │ │ ├── opacity_nested_on_layer.png │ │ ├── opacity_on_layer.png │ │ ├── overflowing_stroked_rect.png │ │ ├── oversized_star.png │ │ ├── recording_basic.png │ │ ├── recording_can_be_cleared.png │ │ ├── recording_can_be_repeatedly_executed_in_layers.png │ │ ├── recording_glyphs.png │ │ ├── recording_handles_offscreen_content.png │ │ ├── recording_incremental_build.png │ │ ├── recording_is_executed_at_recorded_transform.png │ │ ├── recording_is_executed_with_multiple_transforms.png │ │ ├── recording_mixed_with_direct_drawing.png │ │ ├── rectangle_above_viewport.png │ │ ├── rectangle_left_of_viewport.png │ │ ├── repeatedly_compose_to_bottom_layer.png │ │ ├── round_stroked_rect.png │ │ ├── strip_inscribed_rect.png │ │ ├── stroke_scaled.png │ │ ├── stroked_aligned_rect.png │ │ ├── stroked_circle.png │ │ ├── stroked_transformed_rect_1.png │ │ ├── stroked_transformed_rect_2.png │ │ ├── stroked_transformed_rect_3.png │ │ ├── stroked_transformed_rect_4.png │ │ ├── stroked_triangle.png │ │ ├── stroked_unaligned_rect.png │ │ ├── stroked_unaligned_rect_as_path.png │ │ ├── tile_clamped_off_by_one.png │ │ ├── transparent_paint.png │ │ ├── triangle_above_and_wider_than_viewport.png │ │ ├── triangle_exceeding_viewport_1.png │ │ ├── triangle_exceeding_viewport_2.png │ │ └── tricky_strokes.png │ └── tests │ │ ├── assets │ │ ├── cowboy.png │ │ ├── luma_image_10x10.png │ │ ├── lumaa_image_10x10.png │ │ ├── rgb_image_10x10.png │ │ ├── rgb_image_2x2.png │ │ ├── rgb_image_2x3.png │ │ └── rgba_image_10x10.png │ │ ├── basic.rs │ │ ├── blurred_rounded_rect.rs │ │ ├── clip.rs │ │ ├── compose.rs │ │ ├── filter.rs │ │ ├── glyph.rs │ │ ├── gradient.rs │ │ ├── image.rs │ │ ├── issues.rs │ │ ├── layer.rs │ │ ├── mask.rs │ │ ├── mix.rs │ │ ├── mod.rs │ │ ├── opacity.rs │ │ ├── recording.rs │ │ ├── renderer.rs │ │ ├── scenes.rs │ │ ├── util.rs │ │ └── wasm_binary_invariants.rs └── vello_toy │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── debug.rs │ └── svg.rs ├── vello ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ ├── debug.rs │ ├── debug │ ├── renderer.rs │ └── validate.rs │ ├── lib.rs │ ├── recording.rs │ ├── render.rs │ ├── scene.rs │ ├── shaders.rs │ ├── util.rs │ └── wgpu_engine.rs ├── vello_encoding ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ ├── binning.rs │ ├── clip.rs │ ├── config.rs │ ├── draw.rs │ ├── encoding.rs │ ├── estimate.rs │ ├── glyph.rs │ ├── glyph_cache.rs │ ├── image_cache.rs │ ├── lib.rs │ ├── mask.rs │ ├── math.rs │ ├── monoid.rs │ ├── path.rs │ ├── ramp_cache.rs │ └── resolve.rs ├── vello_shaders ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── build.rs ├── shader │ ├── UNLICENSE │ ├── backdrop.wgsl │ ├── backdrop_dyn.wgsl │ ├── bbox_clear.wgsl │ ├── binning.wgsl │ ├── clip_leaf.wgsl │ ├── clip_reduce.wgsl │ ├── coarse.wgsl │ ├── draw_leaf.wgsl │ ├── draw_reduce.wgsl │ ├── fine.wgsl │ ├── flatten.wgsl │ ├── path_count.wgsl │ ├── path_count_setup.wgsl │ ├── path_tiling.wgsl │ ├── path_tiling_setup.wgsl │ ├── pathtag_reduce.wgsl │ ├── pathtag_reduce2.wgsl │ ├── pathtag_scan.wgsl │ ├── pathtag_scan1.wgsl │ ├── permutations │ ├── shared │ │ ├── bbox.wgsl │ │ ├── blend.wgsl │ │ ├── bump.wgsl │ │ ├── clip.wgsl │ │ ├── config.wgsl │ │ ├── cubic.wgsl │ │ ├── drawtag.wgsl │ │ ├── pathtag.wgsl │ │ ├── ptcl.wgsl │ │ ├── segment.wgsl │ │ ├── tile.wgsl │ │ ├── transform.wgsl │ │ └── util.wgsl │ └── tile_alloc.wgsl └── src │ ├── compile │ ├── mod.rs │ ├── msl.rs │ ├── permutations.rs │ └── preprocess.rs │ ├── cpu.rs │ ├── cpu │ ├── backdrop.rs │ ├── bbox_clear.rs │ ├── binning.rs │ ├── clip_leaf.rs │ ├── clip_reduce.rs │ ├── coarse.rs │ ├── draw_leaf.rs │ ├── draw_reduce.rs │ ├── euler.rs │ ├── fine.rs │ ├── flatten.rs │ ├── path_count.rs │ ├── path_count_setup.rs │ ├── path_tiling.rs │ ├── path_tiling_setup.rs │ ├── pathtag_reduce.rs │ ├── pathtag_scan.rs │ ├── tile_alloc.rs │ └── util.rs │ ├── lib.rs │ └── types.rs ├── vello_tests ├── Cargo.toml ├── README.md ├── build.rs ├── comparisons │ └── .gitignore ├── current │ └── .gitignore ├── debug_outputs │ └── .gitignore ├── snapshots │ ├── .gitignore │ ├── big_bitmap.png │ ├── big_bitmap_apple.png │ ├── big_colr.png │ ├── bitmap_undef.png │ ├── blurred_rounded_rect.png │ ├── clip_blends.png │ ├── colr_undef.png │ ├── deep_blend.png │ ├── fill_types.png │ ├── funky_paths.png │ ├── gradient_extend.png │ ├── image_extend_modes_bilinear.png │ ├── image_extend_modes_nearest_neighbor.png │ ├── image_luminance_mask.png │ ├── image_sampling.png │ ├── integer_translation.png │ ├── little_bitmap.png │ ├── little_colr.png │ ├── longpathdash_butt.png │ ├── luminance_mask.png │ ├── many_clips.png │ ├── non_integer_translation.png │ ├── rounded_rectangle_watertight.png │ ├── scaled_hinted.png │ ├── simple_hinted.png │ ├── smoke │ │ ├── data_image_roundtrip.png │ │ ├── filled_circle.png │ │ ├── filled_square.png │ │ ├── gradient_color_alpha.png │ │ ├── layer_size.png │ │ └── two_emoji.png │ ├── splash.png │ ├── stroke_styles.png │ ├── stroke_styles_non_uniform.png │ ├── stroke_styles_skew.png │ ├── stroke_width_zero.png │ ├── text_stroke_width_zero.png │ └── tricky_strokes.png ├── src │ ├── compare.rs │ ├── lib.rs │ └── snapshot.rs └── tests │ ├── compare_gpu_cpu.rs │ ├── emoji.rs │ ├── hinting.rs │ ├── known_issues.rs │ ├── property.rs │ ├── regression.rs │ ├── smoke_snapshots.rs │ └── snapshot_test_scenes.rs └── xtask ├── Cargo.toml ├── README.md └── src └── main.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.clippy.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.github/copyright.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/web-demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.github/workflows/web-demo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.gitignore -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.taplo.toml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.typos.toml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/README.md -------------------------------------------------------------------------------- /doc/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/doc/ARCHITECTURE.md -------------------------------------------------------------------------------- /doc/blogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/doc/blogs.md -------------------------------------------------------------------------------- /doc/images/piet-gpu-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/doc/images/piet-gpu-diagram.jpg -------------------------------------------------------------------------------- /doc/pathseg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/doc/pathseg.md -------------------------------------------------------------------------------- /doc/roadmap_2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/doc/roadmap_2023.md -------------------------------------------------------------------------------- /doc/vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/doc/vision.md -------------------------------------------------------------------------------- /examples/assets/Ghostscript_Tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/Ghostscript_Tiger.svg -------------------------------------------------------------------------------- /examples/assets/colr_test_glyphs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/colr_test_glyphs/LICENSE.txt -------------------------------------------------------------------------------- /examples/assets/colr_test_glyphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/colr_test_glyphs/README.md -------------------------------------------------------------------------------- /examples/assets/colr_test_glyphs/test_glyphs-glyf_colr_1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/colr_test_glyphs/test_glyphs-glyf_colr_1.ttf -------------------------------------------------------------------------------- /examples/assets/downloads/.tracked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/downloads/.tracked -------------------------------------------------------------------------------- /examples/assets/inconsolata/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/inconsolata/Inconsolata.ttf -------------------------------------------------------------------------------- /examples/assets/inconsolata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/inconsolata/LICENSE.txt -------------------------------------------------------------------------------- /examples/assets/noto_color_emoji/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/noto_color_emoji/LICENSE.txt -------------------------------------------------------------------------------- /examples/assets/noto_color_emoji/NotoColorEmoji-CBTF-Subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/noto_color_emoji/NotoColorEmoji-CBTF-Subset.ttf -------------------------------------------------------------------------------- /examples/assets/noto_color_emoji/NotoColorEmoji-Subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/noto_color_emoji/NotoColorEmoji-Subset.ttf -------------------------------------------------------------------------------- /examples/assets/noto_color_emoji/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/noto_color_emoji/README.md -------------------------------------------------------------------------------- /examples/assets/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/roboto/LICENSE.txt -------------------------------------------------------------------------------- /examples/assets/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /examples/assets/splash-flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/assets/splash-flower.jpg -------------------------------------------------------------------------------- /examples/headless/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/headless/Cargo.toml -------------------------------------------------------------------------------- /examples/headless/outputs/.tracked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/headless/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/headless/src/main.rs -------------------------------------------------------------------------------- /examples/run_wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/run_wasm/Cargo.toml -------------------------------------------------------------------------------- /examples/run_wasm/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/run_wasm/src/main.rs -------------------------------------------------------------------------------- /examples/scenes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/Cargo.toml -------------------------------------------------------------------------------- /examples/scenes/src/images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/src/images.rs -------------------------------------------------------------------------------- /examples/scenes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/src/lib.rs -------------------------------------------------------------------------------- /examples/scenes/src/mmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/src/mmark.rs -------------------------------------------------------------------------------- /examples/scenes/src/pico_svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/src/pico_svg.rs -------------------------------------------------------------------------------- /examples/scenes/src/simple_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/src/simple_text.rs -------------------------------------------------------------------------------- /examples/scenes/src/svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/src/svg.rs -------------------------------------------------------------------------------- /examples/scenes/src/test_scenes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/scenes/src/test_scenes.rs -------------------------------------------------------------------------------- /examples/simple/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/simple/Cargo.toml -------------------------------------------------------------------------------- /examples/simple/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/simple/src/main.rs -------------------------------------------------------------------------------- /examples/simple_sdl2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/simple_sdl2/Cargo.toml -------------------------------------------------------------------------------- /examples/simple_sdl2/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/simple_sdl2/src/main.rs -------------------------------------------------------------------------------- /examples/with_winit/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/Cargo.toml -------------------------------------------------------------------------------- /examples/with_winit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/README.md -------------------------------------------------------------------------------- /examples/with_winit/src/hot_reload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/src/hot_reload.rs -------------------------------------------------------------------------------- /examples/with_winit/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/src/lib.rs -------------------------------------------------------------------------------- /examples/with_winit/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/src/main.rs -------------------------------------------------------------------------------- /examples/with_winit/src/minimal_pipeline_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/src/minimal_pipeline_cache.rs -------------------------------------------------------------------------------- /examples/with_winit/src/multi_touch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/src/multi_touch.rs -------------------------------------------------------------------------------- /examples/with_winit/src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/examples/with_winit/src/stats.rs -------------------------------------------------------------------------------- /image_filters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/image_filters/README.md -------------------------------------------------------------------------------- /image_filters/vello_filters_cpu/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/image_filters/vello_filters_cpu/Cargo.toml -------------------------------------------------------------------------------- /image_filters/vello_filters_cpu/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/image_filters/vello_filters_cpu/LICENSE-APACHE -------------------------------------------------------------------------------- /image_filters/vello_filters_cpu/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/image_filters/vello_filters_cpu/LICENSE-MIT -------------------------------------------------------------------------------- /image_filters/vello_filters_cpu/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/image_filters/vello_filters_cpu/src/lib.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /sparse_strips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_api/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_api/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_api/LICENSE-APACHE -------------------------------------------------------------------------------- /sparse_strips/vello_api/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_api/LICENSE-MIT -------------------------------------------------------------------------------- /sparse_strips/vello_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_api/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_api/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_bench/benches/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/benches/main.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.svg 2 | -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/data.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/blend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/blend.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/fill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/fill.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/gradient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/gradient.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/image.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/pack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/pack.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/rounded_blurred_rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/rounded_blurred_rect.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/fine/strip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/fine/strip.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/flatten.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/flatten.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/glyph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/glyph.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/strip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/strip.rs -------------------------------------------------------------------------------- /sparse_strips/vello_bench/src/tile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_bench/src/tile.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/CHANGELOG.md -------------------------------------------------------------------------------- /sparse_strips/vello_common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_common/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/LICENSE-APACHE -------------------------------------------------------------------------------- /sparse_strips/vello_common/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/LICENSE-MIT -------------------------------------------------------------------------------- /sparse_strips/vello_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/blurred_rounded_rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/blurred_rounded_rect.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/clip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/clip.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/coarse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/coarse.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/colr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/colr.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/encode.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/filter_effects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/filter_effects.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/flatten.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/flatten.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/flatten_simd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/flatten_simd.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/glyph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/glyph.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/mask.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/mask.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/math.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/paint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/paint.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/pico_svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/pico_svg.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/pixmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/pixmap.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/recording.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/recording.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/render_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/render_graph.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/simd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/simd.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/strip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/strip.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/strip_generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/strip_generator.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/tile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/tile.rs -------------------------------------------------------------------------------- /sparse_strips/vello_common/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_common/src/util.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/CHANGELOG.md -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/LICENSE-APACHE -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/LICENSE-MIT -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/basic.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/clipping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/clipping.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/masking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/masking.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/paints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/paints.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/wasm_cpu/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/wasm_cpu/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/wasm_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/wasm_cpu/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/wasm_cpu/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/wasm_cpu/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/wasm_cpu/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/wasm_cpu/src/main.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/winit/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/winit/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/winit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/winit/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/examples/winit/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/examples/winit/src/main.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/dispatch/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/dispatch/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/dispatch/multi_threaded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/dispatch/multi_threaded.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/dispatch/multi_threaded/cost.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/dispatch/multi_threaded/cost.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/dispatch/multi_threaded/worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/dispatch/multi_threaded/worker.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/dispatch/single_threaded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/dispatch/single_threaded.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/filter/drop_shadow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/filter/drop_shadow.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/filter/flood.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/filter/flood.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/filter/gaussian_blur.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/filter/gaussian_blur.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/filter/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/filter/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/common/gradient/linear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/common/gradient/linear.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/common/gradient/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/common/gradient/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/common/gradient/radial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/common/gradient/radial.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/common/gradient/sweep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/common/gradient/sweep.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/common/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/common/image.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/common/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/common/rounded_blurred_rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/common/rounded_blurred_rect.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/highp/blend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/highp/blend.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/highp/compose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/highp/compose.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/highp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/highp/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/lowp/compose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/lowp/compose.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/lowp/gradient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/lowp/gradient.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/lowp/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/lowp/image.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/lowp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/lowp/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/fine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/fine/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/layer_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/layer_manager.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/region.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/render.rs -------------------------------------------------------------------------------- /sparse_strips/vello_cpu/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_cpu/src/util.rs -------------------------------------------------------------------------------- /sparse_strips/vello_dev_macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_dev_macros/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_dev_macros/src/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_dev_macros/src/bench.rs -------------------------------------------------------------------------------- /sparse_strips/vello_dev_macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_dev_macros/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_dev_macros/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_dev_macros/src/test.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/LICENSE-APACHE -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/LICENSE-MIT -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/blend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/blend.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/clip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/clip.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/filter.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/gradient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/gradient.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/image.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/path.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/simple.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/svg.rs -------------------------------------------------------------------------------- /sparse_strips/vello_example_scenes/src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_example_scenes/src/text.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/CHANGELOG.md -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/LICENSE-APACHE -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/LICENSE-MIT -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/native_webgl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/native_webgl/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/native_webgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/native_webgl/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/native_webgl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/native_webgl/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/native_webgl/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/native_webgl/src/main.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/native_webgl/tests/webgl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/native_webgl/tests/webgl.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/render_to_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/render_to_file.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/wgpu_webgl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/wgpu_webgl/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/wgpu_webgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/wgpu_webgl/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/wgpu_webgl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/wgpu_webgl/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/wgpu_webgl/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/wgpu_webgl/src/main.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/wgpu_webgl/tests/webgl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/wgpu_webgl/tests/webgl.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/winit/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/winit/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/winit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/winit/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/winit/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/winit/src/main.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/examples/winit/src/render_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/examples/winit/src/render_context.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/gradient_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/gradient_cache.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/image_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/image_cache.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/multi_atlas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/multi_atlas.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/render/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/render/common.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/render/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/render/webgl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/render/webgl.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/render/wgpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/render/wgpu.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/scene.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/scene.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/schedule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/schedule.rs -------------------------------------------------------------------------------- /sparse_strips/vello_hybrid/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_hybrid/src/util.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/LICENSE-APACHE -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/LICENSE-MIT -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/build.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/shaders/clear_slots.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/shaders/clear_slots.wgsl -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/shaders/render_strips.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/shaders/render_strips.wgsl -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/src/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/src/compile.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/src/lib.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_shaders/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_shaders/src/types.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/.gitignore: -------------------------------------------------------------------------------- 1 | diffs 2 | -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/basic_alpha_compositing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/basic_alpha_compositing.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/bevel_stroked_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/bevel_stroked_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_large_std_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_large_std_dev.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_medium_std_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_medium_std_dev.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_none.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_small_std_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_small_std_dev.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_with_large_radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_with_large_radius.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_with_radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_with_radius.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_with_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/blurred_rounded_rect_with_transform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_clear.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_deeply_nested_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_deeply_nested_circles.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_non_isolated_deeply_nested_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_non_isolated_deeply_nested_circles.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_non_isolated_outside_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_non_isolated_outside_canvas.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_non_isolated_rectangle_with_star_evenodd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_non_isolated_rectangle_with_star_evenodd.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_rectangle_and_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_rectangle_and_circle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_rectangle_with_star_evenodd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_rectangle_with_star_evenodd.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_rectangle_with_star_nonzero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_rectangle_with_star_nonzero.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_single_wide_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_single_wide_tile.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_transformed_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_transformed_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_triangle_with_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_triangle_with_star.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_with_multiple_transforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_with_multiple_transforms.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_with_opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_with_opacity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_with_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_with_rotate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_with_save_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_with_save_restore.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_with_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_with_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_with_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_with_translation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/clip_wrong_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/clip_wrong_command.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/complex_composed_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/complex_composed_layers.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_clear.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_copy.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_dest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_dest.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_dest_atop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_dest_atop.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_dest_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_dest_in.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_dest_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_dest_out.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_dest_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_dest_over.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_clear.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_copy.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_atop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_atop.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_in.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_out.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_dest_over.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_plus.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_atop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_atop.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_in.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_out.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_src_over.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_non_isolated_xor.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_plus.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_src_atop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_src_atop.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_src_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_src_in.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_src_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_src_out.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_src_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_src_over.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_wide_tile_nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_wide_tile_nested.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/compose_xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/compose_xor.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/composed_layers_nesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/composed_layers_nesting.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/deep_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/deep_compose.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/eo_filling_missing_anti_aliasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/eo_filling_missing_anti_aliasing.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/fill_command_respects_clip_bounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/fill_command_respects_clip_bounds.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_aligned_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_aligned_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_circle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_circle_with_opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_circle_with_opacity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_fully_overflowing_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_fully_overflowing_circle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_overflowing_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_overflowing_circle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_overlapping_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_overlapping_circles.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_3.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_transformed_rect_4.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_triangle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_unaligned_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_unaligned_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_vertical_hairline_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_vertical_hairline_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filled_vertical_hairline_rect_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filled_vertical_hairline_rect_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filling_evenodd_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filling_evenodd_rule.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filling_nonzero_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filling_nonzero_rule.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filling_unclosed_path_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filling_unclosed_path_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filling_unclosed_path_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filling_unclosed_path_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filter_drop_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filter_drop_shadow.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filter_drop_shadow_corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filter_drop_shadow_corners.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filter_flood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filter_flood.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filter_gaussian_blur_no_decimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filter_gaussian_blur_no_decimation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filter_gaussian_blur_with_decimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filter_gaussian_blur_with_decimation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filter_set_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filter_set_effect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/filter_varying_depths_clips_and_compositions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/filter_varying_depths_clips_and_compositions.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/full_cover_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/full_cover_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyph_recording_outside_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyph_recording_outside_transform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_bitmap_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_bitmap_apple.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_bitmap_noto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_bitmap_noto.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_colr_noto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_colr_noto.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_colr_test_glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_colr_test_glyphs.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_filled.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_filled_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_filled_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_glyph_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_glyph_transform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_glyph_transform_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_glyph_transform_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_scaled.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_scaled_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_scaled_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_long.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_long_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_long_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_unskewed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_unskewed.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_unskewed_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_skewed_unskewed_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_small.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_small_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_small_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_stroked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_stroked.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/glyphs_stroked_unhinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/glyphs_stroked_unhinted.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_color_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_color_alpha.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_color_alpha_unmul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_color_alpha_unmul.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_2_stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_2_stops.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_2_stops_with_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_2_stops_with_alpha.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_4_stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_4_stops.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_complex_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_complex_shape.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_negative_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_negative_direction.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_spread_method_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_spread_method_pad.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_spread_method_reflect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_spread_method_reflect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_spread_method_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_spread_method_repeat.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_vertical.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_downward_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_downward_y.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_identity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_negative_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_negative_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_rotate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_rotate_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_rotate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_rotate_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_scale_and_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_scale_and_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_scaling_non_uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_scaling_non_uniform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_x_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_x_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_y_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_y_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_y_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_skew_y_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_transform_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_upward_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_upward_y.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_y_reflect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_y_reflect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_y_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_linear_with_y_repeat.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_on_3_wide_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_on_3_wide_tiles.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_padded_first_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_padded_first_stop.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_padded_last_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_padded_last_stop.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_padded_stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_padded_stops.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_2_stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_2_stops.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_2_stops_with_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_2_stops_with_alpha.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_4_stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_4_stops.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_c0_bigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_c0_bigger.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_bottom_left.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_bottom_right.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_top_left.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_center_offset_top_right.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_complex_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_complex_shape.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_focal_on_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_focal_on_circle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_inside.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_natively_focal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_natively_focal.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_c0_larger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_c0_larger.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_c0_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_c0_smaller.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_cone.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_same_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_non_overlapping_same_size.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_outside.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_smaller_r1_with_reflect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_smaller_r1_with_reflect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_spread_method_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_spread_method_pad.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_spread_method_reflect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_spread_method_reflect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_spread_method_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_spread_method_repeat.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_swapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_swapped.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_identity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_negative_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_negative_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_rotate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_rotate_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_rotate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_rotate_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_scale_and_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_scale_and_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_scale_non_uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_scale_non_uniform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_x_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_x_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_y_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_y_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_y_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_skew_y_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_radial_with_transform_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_2_stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_2_stops.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_2_stops_with_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_2_stops_with_alpha.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_4_stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_4_stops.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_complex_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_complex_shape.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_not_in_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_not_in_center.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_spread_method_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_spread_method_pad.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_spread_method_reflect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_spread_method_reflect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_spread_method_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_spread_method_repeat.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_identity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_negative_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_negative_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_rotate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_rotate_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_rotate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_rotate_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_scale_and_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_scale_and_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_scale_non_uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_scale_non_uniform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_x_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_x_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_y_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_y_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_y_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_skew_y_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_sweep_with_transform_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_with_color_spaces_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_with_color_spaces_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_with_color_spaces_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_with_color_spaces_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_with_color_spaces_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_with_color_spaces_3.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/gradient_with_global_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/gradient_with_global_alpha.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bicubic_10x_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bicubic_10x_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bicubic_10x_scale_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bicubic_10x_scale_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bicubic_2x_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bicubic_2x_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bicubic_5x_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bicubic_5x_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bicubic_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bicubic_identity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bicubic_with_rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bicubic_with_rotation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bicubic_with_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bicubic_with_translation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bilinear_10x_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bilinear_10x_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bilinear_10x_scale_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bilinear_10x_scale_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bilinear_2x_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bilinear_2x_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bilinear_5x_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bilinear_5x_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bilinear_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bilinear_identity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bilinear_with_rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bilinear_with_rotation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_bilinear_with_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_bilinear_with_translation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_complex_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_complex_shape.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_global_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_global_alpha.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_luma_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_luma_image.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_lumaa_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_lumaa_image.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_pad_x_pad_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_pad_x_pad_y.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_pad_x_repeat_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_pad_x_repeat_y.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_reflect_x_pad_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_reflect_x_pad_y.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_reflect_x_reflect_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_reflect_x_reflect_y.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_repeat_x_repeat_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_repeat_x_repeat_y.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_rgb_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_rgb_image.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_rgba_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_rgba_image.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_multiple_clip_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_multiple_clip_layers.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_opacity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_identity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_negative_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_negative_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_rotate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_rotate_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_rotate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_rotate_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_scale.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_scale_and_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_scale_and_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_scaling_non_uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_scaling_non_uniform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_x_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_x_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_x_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_x_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_y_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_y_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_y_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_skew_y_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/image_with_transform_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/image_with_transform_translate.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_3.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_4.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_5.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_6.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_7.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/incorrect_filling_8.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/layer_multiple_properties_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/layer_multiple_properties_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mask_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mask_alpha.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mask_luminance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mask_luminance.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mask_non_isolated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mask_non_isolated.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_color.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_color_burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_color_burn.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_color_dodge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_color_dodge.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_color_with_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_color_with_solid.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_compose_combined_test_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_compose_combined_test_matrix.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_darken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_darken.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_difference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_difference.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_exclusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_exclusion.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_hard_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_hard_light.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_hue.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_lighten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_lighten.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_luminosity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_luminosity.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_modes_non_gradient_test_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_modes_non_gradient_test_matrix.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_multiply.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_non_isolated_color_dodge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_non_isolated_color_dodge.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_non_isolated_difference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_non_isolated_difference.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_non_isolated_soft_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_non_isolated_soft_light.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_normal.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_overlay.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_saturation.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_saturation_with_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_saturation_with_solid.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_screen.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_soft_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_soft_light.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/mix_with_transparent_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/mix_with_transparent_bg.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/nested_clip_path_panic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/nested_clip_path_panic_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/no_anti_aliasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/no_anti_aliasing.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/no_anti_aliasing_clip_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/no_anti_aliasing_clip_path.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/opacity_nested_on_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/opacity_nested_on_layer.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/opacity_on_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/opacity_on_layer.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/overflowing_stroked_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/overflowing_stroked_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/oversized_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/oversized_star.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_basic.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_can_be_cleared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_can_be_cleared.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_can_be_repeatedly_executed_in_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_can_be_repeatedly_executed_in_layers.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_glyphs.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_handles_offscreen_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_handles_offscreen_content.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_incremental_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_incremental_build.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_is_executed_at_recorded_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_is_executed_at_recorded_transform.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_is_executed_with_multiple_transforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_is_executed_with_multiple_transforms.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/recording_mixed_with_direct_drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/recording_mixed_with_direct_drawing.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/rectangle_above_viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/rectangle_above_viewport.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/rectangle_left_of_viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/rectangle_left_of_viewport.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/repeatedly_compose_to_bottom_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/repeatedly_compose_to_bottom_layer.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/round_stroked_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/round_stroked_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/strip_inscribed_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/strip_inscribed_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroke_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroke_scaled.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_aligned_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_aligned_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_circle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_3.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_transformed_rect_4.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_triangle.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_unaligned_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_unaligned_rect.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/stroked_unaligned_rect_as_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/stroked_unaligned_rect_as_path.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/tile_clamped_off_by_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/tile_clamped_off_by_one.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/transparent_paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/transparent_paint.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/triangle_above_and_wider_than_viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/triangle_above_and_wider_than_viewport.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/triangle_exceeding_viewport_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/triangle_exceeding_viewport_1.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/triangle_exceeding_viewport_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/triangle_exceeding_viewport_2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/snapshots/tricky_strokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/snapshots/tricky_strokes.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/assets/cowboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/assets/cowboy.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/assets/luma_image_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/assets/luma_image_10x10.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/assets/lumaa_image_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/assets/lumaa_image_10x10.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/assets/rgb_image_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/assets/rgb_image_10x10.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/assets/rgb_image_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/assets/rgb_image_2x2.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/assets/rgb_image_2x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/assets/rgb_image_2x3.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/assets/rgba_image_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/assets/rgba_image_10x10.png -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/basic.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/blurred_rounded_rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/blurred_rounded_rect.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/clip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/clip.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/compose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/compose.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/filter.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/glyph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/glyph.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/gradient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/gradient.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/image.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/issues.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/layer.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/mask.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/mask.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/mix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/mix.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/mod.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/opacity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/opacity.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/recording.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/recording.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/renderer.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/scenes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/scenes.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/util.rs -------------------------------------------------------------------------------- /sparse_strips/vello_sparse_tests/tests/wasm_binary_invariants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_sparse_tests/tests/wasm_binary_invariants.rs -------------------------------------------------------------------------------- /sparse_strips/vello_toy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_toy/Cargo.toml -------------------------------------------------------------------------------- /sparse_strips/vello_toy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_toy/README.md -------------------------------------------------------------------------------- /sparse_strips/vello_toy/src/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_toy/src/debug.rs -------------------------------------------------------------------------------- /sparse_strips/vello_toy/src/svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/sparse_strips/vello_toy/src/svg.rs -------------------------------------------------------------------------------- /vello/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/Cargo.toml -------------------------------------------------------------------------------- /vello/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/LICENSE-APACHE -------------------------------------------------------------------------------- /vello/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/LICENSE-MIT -------------------------------------------------------------------------------- /vello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/README.md -------------------------------------------------------------------------------- /vello/src/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/debug.rs -------------------------------------------------------------------------------- /vello/src/debug/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/debug/renderer.rs -------------------------------------------------------------------------------- /vello/src/debug/validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/debug/validate.rs -------------------------------------------------------------------------------- /vello/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/lib.rs -------------------------------------------------------------------------------- /vello/src/recording.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/recording.rs -------------------------------------------------------------------------------- /vello/src/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/render.rs -------------------------------------------------------------------------------- /vello/src/scene.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/scene.rs -------------------------------------------------------------------------------- /vello/src/shaders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/shaders.rs -------------------------------------------------------------------------------- /vello/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/util.rs -------------------------------------------------------------------------------- /vello/src/wgpu_engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello/src/wgpu_engine.rs -------------------------------------------------------------------------------- /vello_encoding/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/Cargo.toml -------------------------------------------------------------------------------- /vello_encoding/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/LICENSE-APACHE -------------------------------------------------------------------------------- /vello_encoding/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/LICENSE-MIT -------------------------------------------------------------------------------- /vello_encoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/README.md -------------------------------------------------------------------------------- /vello_encoding/src/binning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/binning.rs -------------------------------------------------------------------------------- /vello_encoding/src/clip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/clip.rs -------------------------------------------------------------------------------- /vello_encoding/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/config.rs -------------------------------------------------------------------------------- /vello_encoding/src/draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/draw.rs -------------------------------------------------------------------------------- /vello_encoding/src/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/encoding.rs -------------------------------------------------------------------------------- /vello_encoding/src/estimate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/estimate.rs -------------------------------------------------------------------------------- /vello_encoding/src/glyph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/glyph.rs -------------------------------------------------------------------------------- /vello_encoding/src/glyph_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/glyph_cache.rs -------------------------------------------------------------------------------- /vello_encoding/src/image_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/image_cache.rs -------------------------------------------------------------------------------- /vello_encoding/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/lib.rs -------------------------------------------------------------------------------- /vello_encoding/src/mask.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/mask.rs -------------------------------------------------------------------------------- /vello_encoding/src/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/math.rs -------------------------------------------------------------------------------- /vello_encoding/src/monoid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/monoid.rs -------------------------------------------------------------------------------- /vello_encoding/src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/path.rs -------------------------------------------------------------------------------- /vello_encoding/src/ramp_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/ramp_cache.rs -------------------------------------------------------------------------------- /vello_encoding/src/resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_encoding/src/resolve.rs -------------------------------------------------------------------------------- /vello_shaders/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/Cargo.toml -------------------------------------------------------------------------------- /vello_shaders/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/LICENSE-APACHE -------------------------------------------------------------------------------- /vello_shaders/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/LICENSE-MIT -------------------------------------------------------------------------------- /vello_shaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/README.md -------------------------------------------------------------------------------- /vello_shaders/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/build.rs -------------------------------------------------------------------------------- /vello_shaders/shader/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/UNLICENSE -------------------------------------------------------------------------------- /vello_shaders/shader/backdrop.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/backdrop.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/backdrop_dyn.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/backdrop_dyn.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/bbox_clear.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/bbox_clear.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/binning.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/binning.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/clip_leaf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/clip_leaf.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/clip_reduce.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/clip_reduce.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/coarse.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/coarse.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/draw_leaf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/draw_leaf.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/draw_reduce.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/draw_reduce.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/fine.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/fine.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/flatten.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/flatten.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/path_count.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/path_count.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/path_count_setup.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/path_count_setup.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/path_tiling.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/path_tiling.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/path_tiling_setup.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/path_tiling_setup.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/pathtag_reduce.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/pathtag_reduce.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/pathtag_reduce2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/pathtag_reduce2.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/pathtag_scan.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/pathtag_scan.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/pathtag_scan1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/pathtag_scan1.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/permutations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/permutations -------------------------------------------------------------------------------- /vello_shaders/shader/shared/bbox.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/bbox.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/blend.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/blend.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/bump.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/bump.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/clip.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/clip.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/config.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/config.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/cubic.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/cubic.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/drawtag.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/drawtag.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/pathtag.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/pathtag.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/ptcl.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/ptcl.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/segment.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/segment.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/tile.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/tile.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/transform.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/transform.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/shared/util.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/shared/util.wgsl -------------------------------------------------------------------------------- /vello_shaders/shader/tile_alloc.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/shader/tile_alloc.wgsl -------------------------------------------------------------------------------- /vello_shaders/src/compile/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/compile/mod.rs -------------------------------------------------------------------------------- /vello_shaders/src/compile/msl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/compile/msl.rs -------------------------------------------------------------------------------- /vello_shaders/src/compile/permutations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/compile/permutations.rs -------------------------------------------------------------------------------- /vello_shaders/src/compile/preprocess.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/compile/preprocess.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/backdrop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/backdrop.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/bbox_clear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/bbox_clear.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/binning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/binning.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/clip_leaf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/clip_leaf.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/clip_reduce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/clip_reduce.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/coarse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/coarse.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/draw_leaf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/draw_leaf.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/draw_reduce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/draw_reduce.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/euler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/euler.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/fine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/fine.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/flatten.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/flatten.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/path_count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/path_count.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/path_count_setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/path_count_setup.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/path_tiling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/path_tiling.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/path_tiling_setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/path_tiling_setup.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/pathtag_reduce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/pathtag_reduce.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/pathtag_scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/pathtag_scan.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/tile_alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/tile_alloc.rs -------------------------------------------------------------------------------- /vello_shaders/src/cpu/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/cpu/util.rs -------------------------------------------------------------------------------- /vello_shaders/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/lib.rs -------------------------------------------------------------------------------- /vello_shaders/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_shaders/src/types.rs -------------------------------------------------------------------------------- /vello_tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/Cargo.toml -------------------------------------------------------------------------------- /vello_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/README.md -------------------------------------------------------------------------------- /vello_tests/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/build.rs -------------------------------------------------------------------------------- /vello_tests/comparisons/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vello_tests/current/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /vello_tests/debug_outputs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vello_tests/snapshots/.gitignore: -------------------------------------------------------------------------------- 1 | *.oversized.png 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vello_tests/snapshots/big_bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/big_bitmap.png -------------------------------------------------------------------------------- /vello_tests/snapshots/big_bitmap_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/big_bitmap_apple.png -------------------------------------------------------------------------------- /vello_tests/snapshots/big_colr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/big_colr.png -------------------------------------------------------------------------------- /vello_tests/snapshots/bitmap_undef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/bitmap_undef.png -------------------------------------------------------------------------------- /vello_tests/snapshots/blurred_rounded_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/blurred_rounded_rect.png -------------------------------------------------------------------------------- /vello_tests/snapshots/clip_blends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/clip_blends.png -------------------------------------------------------------------------------- /vello_tests/snapshots/colr_undef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/colr_undef.png -------------------------------------------------------------------------------- /vello_tests/snapshots/deep_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/deep_blend.png -------------------------------------------------------------------------------- /vello_tests/snapshots/fill_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/fill_types.png -------------------------------------------------------------------------------- /vello_tests/snapshots/funky_paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/funky_paths.png -------------------------------------------------------------------------------- /vello_tests/snapshots/gradient_extend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/gradient_extend.png -------------------------------------------------------------------------------- /vello_tests/snapshots/image_extend_modes_bilinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/image_extend_modes_bilinear.png -------------------------------------------------------------------------------- /vello_tests/snapshots/image_extend_modes_nearest_neighbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/image_extend_modes_nearest_neighbor.png -------------------------------------------------------------------------------- /vello_tests/snapshots/image_luminance_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/image_luminance_mask.png -------------------------------------------------------------------------------- /vello_tests/snapshots/image_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/image_sampling.png -------------------------------------------------------------------------------- /vello_tests/snapshots/integer_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/integer_translation.png -------------------------------------------------------------------------------- /vello_tests/snapshots/little_bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/little_bitmap.png -------------------------------------------------------------------------------- /vello_tests/snapshots/little_colr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/little_colr.png -------------------------------------------------------------------------------- /vello_tests/snapshots/longpathdash_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/longpathdash_butt.png -------------------------------------------------------------------------------- /vello_tests/snapshots/luminance_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/luminance_mask.png -------------------------------------------------------------------------------- /vello_tests/snapshots/many_clips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/many_clips.png -------------------------------------------------------------------------------- /vello_tests/snapshots/non_integer_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/non_integer_translation.png -------------------------------------------------------------------------------- /vello_tests/snapshots/rounded_rectangle_watertight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/rounded_rectangle_watertight.png -------------------------------------------------------------------------------- /vello_tests/snapshots/scaled_hinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/scaled_hinted.png -------------------------------------------------------------------------------- /vello_tests/snapshots/simple_hinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/simple_hinted.png -------------------------------------------------------------------------------- /vello_tests/snapshots/smoke/data_image_roundtrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/smoke/data_image_roundtrip.png -------------------------------------------------------------------------------- /vello_tests/snapshots/smoke/filled_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/smoke/filled_circle.png -------------------------------------------------------------------------------- /vello_tests/snapshots/smoke/filled_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/smoke/filled_square.png -------------------------------------------------------------------------------- /vello_tests/snapshots/smoke/gradient_color_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/smoke/gradient_color_alpha.png -------------------------------------------------------------------------------- /vello_tests/snapshots/smoke/layer_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/smoke/layer_size.png -------------------------------------------------------------------------------- /vello_tests/snapshots/smoke/two_emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/smoke/two_emoji.png -------------------------------------------------------------------------------- /vello_tests/snapshots/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/splash.png -------------------------------------------------------------------------------- /vello_tests/snapshots/stroke_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/stroke_styles.png -------------------------------------------------------------------------------- /vello_tests/snapshots/stroke_styles_non_uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/stroke_styles_non_uniform.png -------------------------------------------------------------------------------- /vello_tests/snapshots/stroke_styles_skew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/stroke_styles_skew.png -------------------------------------------------------------------------------- /vello_tests/snapshots/stroke_width_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/stroke_width_zero.png -------------------------------------------------------------------------------- /vello_tests/snapshots/text_stroke_width_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/text_stroke_width_zero.png -------------------------------------------------------------------------------- /vello_tests/snapshots/tricky_strokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/snapshots/tricky_strokes.png -------------------------------------------------------------------------------- /vello_tests/src/compare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/src/compare.rs -------------------------------------------------------------------------------- /vello_tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/src/lib.rs -------------------------------------------------------------------------------- /vello_tests/src/snapshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/src/snapshot.rs -------------------------------------------------------------------------------- /vello_tests/tests/compare_gpu_cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/compare_gpu_cpu.rs -------------------------------------------------------------------------------- /vello_tests/tests/emoji.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/emoji.rs -------------------------------------------------------------------------------- /vello_tests/tests/hinting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/hinting.rs -------------------------------------------------------------------------------- /vello_tests/tests/known_issues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/known_issues.rs -------------------------------------------------------------------------------- /vello_tests/tests/property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/property.rs -------------------------------------------------------------------------------- /vello_tests/tests/regression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/regression.rs -------------------------------------------------------------------------------- /vello_tests/tests/smoke_snapshots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/smoke_snapshots.rs -------------------------------------------------------------------------------- /vello_tests/tests/snapshot_test_scenes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/vello_tests/tests/snapshot_test_scenes.rs -------------------------------------------------------------------------------- /xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/xtask/Cargo.toml -------------------------------------------------------------------------------- /xtask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/xtask/README.md -------------------------------------------------------------------------------- /xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/vello/HEAD/xtask/src/main.rs --------------------------------------------------------------------------------