verpeteren / rust-simd-noise

SIMD noise library for Rust
https://crates.io/crates/simdnoise
250 stars 20 forks source link

Use version instead of local path for simdeez & clarify simdeez version #16

Closed virtualritz closed 4 years ago

virtualritz commented 4 years ago

See here.

When trying to build against the commented out simdeez 1.0.0, I get a bunch of:

error[E0425]: cannot find function, tuple struct or tuple variant `F32x8` in this scope
  --> src/avx2.rs:30:9
   |
30 |         F32x8(x),
   |         ^^^^^ not found in this scope
   |
help: consider importing this tuple struct
   |
10 | use simdeez::overloads::F32x8;
   |

error[E0425]: cannot find function, tuple struct or tuple variant `F32x8` in this scope
  --> src/avx2.rs:31:9
   |
31 |         F32x8(y),
   |         ^^^^^ not found in this scope
   |
help: consider importing this tuple struct
   |
10 | use simdeez::overloads::F32x8;
   |

error[E0425]: cannot find function, tuple struct or tuple variant `F32x8` in this scope
  --> src/avx2.rs:34:9
   |
34 |         F32x8(jitter),
   |         ^^^^^ not found in this scope
   |
help: consider importing this tuple struct
   |
10 | use simdeez::overloads::F32x8;
   |
jackmott commented 4 years ago

Just pushed a fix up to master

virtualritz commented 4 years ago

Ah shit, I had one too. :)

virtualritz commented 4 years ago

Works for me.