Update the scalar SIMD fallback

This commit is contained in:
Patrick Walton 2019-03-08 12:30:07 -08:00
parent a74c0abbec
commit d1728dfe6d
4 changed files with 3705 additions and 64 deletions

1
Cargo.lock generated
View File

@ -164,6 +164,7 @@ dependencies = [
"gl 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
"pathfinder_demo 0.1.0",
"pathfinder_geometry 0.3.0",
"pathfinder_simd 0.3.0",
"sdl2 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)",
"sdl2-sys 0.32.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
[features]
pf-no-simd = ["pathfinder_simd/pf-no-simd"]
[dependencies]
gl = "0.6"
sdl2 = "0.32"
@ -14,3 +17,6 @@ path = "../common"
[dependencies.pathfinder_geometry]
path = "../../geometry"
[dependencies.pathfinder_simd]
path = "../../simd"

View File

@ -4,4 +4,7 @@ version = "0.3.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
[features]
pf-no-simd = []
[dependencies]

File diff suppressed because it is too large Load Diff