zesterer / euc

A software rendering crate that lets you write shaders with Rust
Apache License 2.0
294 stars 18 forks source link

Sampler does not work with the latest version of image #27

Closed markusmoenig closed 10 months ago

markusmoenig commented 10 months ago

The sampler does not work with the latest version of the image crate (0.24.*).

Something about the trait bonds not being satisfied.

zesterer commented 10 months ago

This will be because cargo is compiling in two versions of the same crate (0.23, which euc depends on, and 0.24, which you depend on).

I've pushed up a commit that should resolve this.

markusmoenig commented 10 months ago

Yes, thanks, that fixes it, texture_packer was also on a different version and it got all scrambled up.