You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is from cargo test, apparently due to the generator crate, brought in via loom. Example CI failure. This is because asm! is being renamed to llvm_asm! (tracking issue).
Possible solutions:
Fix the generator crate
Figure out some way to cfg away the asm! code. I'm not sure if loom even uses that stuff.
Don't run loom on nightly
Ignore the CI failures for now
The text was updated successfully, but these errors were encountered:
Fair enough. I made PR Xudong-Huang/generator-rs#20 to fix the issue, so hopefully it should be a matter of waiting until that change is merged and propagated upwards.
664: Integrate ETC and ASTC textures in Skybox example r=kvark a=cwfitzgerald
Depends on gfx-rs#1074
Converts skybox example to mip-mapped files in:
- Bgra8
- Bc1
- ETC2
- ASTC4x4
Looks quite good now with mipmapping and trilinear filtering even at small resolutions.
Co-authored-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>
This is from
cargo test
, apparently due to thegenerator
crate, brought in vialoom
. Example CI failure. This is becauseasm!
is being renamed tollvm_asm!
(tracking issue).Possible solutions:
generator
cratecfg
away theasm!
code. I'm not sure ifloom
even uses that stuff.loom
on nightlyThe text was updated successfully, but these errors were encountered: