-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upgrade to bevy 0.12 #221
upgrade to bevy 0.12 #221
Conversation
Bevy 0.12 was just released! |
yea, cargo updated |
src/lib.rs
Outdated
@@ -144,7 +144,7 @@ fn compare_descriptors(a: &ImageSampler, b: &ImageSampler) -> bool { | |||
match (a, b) { | |||
(ImageSampler::Default, ImageSampler::Default) => true, | |||
(ImageSampler::Descriptor(descriptor_a), ImageSampler::Descriptor(descriptor_b)) => { | |||
descriptor_a == descriptor_b | |||
descriptor_a.label == descriptor_b.label |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
compared all of them
Co-authored-by: Matthew S. Klosak <9565094+msklosak@users.noreply.github.com>
@raffaeleragni thanks a lot for the PR! There are a few CI warnings, but I'll take it from here. (I'll push directly to your branch, I hope you won't mind.) |
no prob |
* upgrade to bevy 0.12 * upgrade * bevy release * Update src/lib.rs Co-authored-by: Matthew S. Klosak <9565094+msklosak@users.noreply.github.com> * compare all fields * use real time * Simplify the compare_descriptors implementation * Fix compiling in WASM * Fix formatting * Fix web-sys version just in the CI instead * Remove redundant dev-dependencies features --------- Co-authored-by: Matthew S. Klosak <9565094+msklosak@users.noreply.github.com> Co-authored-by: mvlabat <mvlabat@gmail.com>
* upgrade to bevy 0.12 * upgrade * bevy release * Update src/lib.rs Co-authored-by: Matthew S. Klosak <9565094+msklosak@users.noreply.github.com> * compare all fields * use real time * Simplify the compare_descriptors implementation * Fix compiling in WASM * Fix formatting * Fix web-sys version just in the CI instead * Remove redundant dev-dependencies features --------- Co-authored-by: Matthew S. Klosak <9565094+msklosak@users.noreply.github.com> Co-authored-by: mvlabat <mvlabat@gmail.com>
to update cargo when bevy 0.12 is out