summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar Rose Hogenson <rosehogenson@posteo.net>2024-10-26 09:28:20 -0700
committerLibravatar Rose Hogenson <rosehogenson@posteo.net>2024-10-26 09:28:20 -0700
commitf3733a811bb020bdffe2090f0391cecc9d976da0 (patch)
tree3a4cb649db36b7b01d7f03e8d763d9be454bf8c3 /graphics
parentd660fad33d97cf78507c6797b5fe45b3daf47454 (diff)
downloadiced-f3733a811bb020bdffe2090f0391cecc9d976da0.tar.gz
iced-f3733a811bb020bdffe2090f0391cecc9d976da0.tar.bz2
iced-f3733a811bb020bdffe2090f0391cecc9d976da0.zip
Use float total_cmp instead of partial_cmp to get a total order.
Since Rust version 1.81, sort_by will panic if the provided comparison function does not implement a total order. See https://github.com/rust/lang/rust/issues/129561 for more details. The simplest fix seems to be to use total_cmp instead of partial_cmp.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/damage.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/graphics/src/damage.rs b/graphics/src/damage.rs
index 17d60451..8aa42798 100644
--- a/graphics/src/damage.rs
+++ b/graphics/src/damage.rs
@@ -45,15 +45,12 @@ pub fn list<T>(
/// Groups the given damage regions that are close together inside the given
/// bounds.
pub fn group(mut damage: Vec<Rectangle>, bounds: Rectangle) -> Vec<Rectangle> {
- use std::cmp::Ordering;
-
const AREA_THRESHOLD: f32 = 20_000.0;
damage.sort_by(|a, b| {
a.center()
.distance(Point::ORIGIN)
- .partial_cmp(&b.center().distance(Point::ORIGIN))
- .unwrap_or(Ordering::Equal)
+ .total_cmp(&b.center().distance(Point::ORIGIN))
});
let mut output = Vec::new();