mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 21:05:58 +01:00
backend/drm: cosmetic enhancements
This commit is contained in:
parent
5b13b8a12c
commit
1342393632
1 changed files with 8 additions and 7 deletions
|
@ -265,25 +265,26 @@ static bool match_obj_(struct match_state *st, size_t skips, size_t score, size_
|
||||||
++replaced;
|
++replaced;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool is_best = false;
|
bool has_best = false;
|
||||||
for (st->res[i] = 0; st->res[i] < st->num_objs; ++st->res[i]) {
|
for (size_t candidate = 0; candidate < st->num_objs; ++candidate) {
|
||||||
// We tried this earlier
|
// We tried this earlier
|
||||||
if (st->res[i] == st->orig[i]) {
|
if (candidate == st->orig[i]) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Not compatible
|
// Not compatible
|
||||||
if (!(st->objs[st->res[i]] & (1 << i))) {
|
if (!(st->objs[candidate] & (1 << i))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Already taken
|
// Already taken
|
||||||
if (is_taken(i, st->res, st->res[i])) {
|
if (is_taken(i, st->res, candidate)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
st->res[i] = candidate;
|
||||||
if (match_obj_(st, skips, score + 1, replaced, i + 1)) {
|
if (match_obj_(st, skips, score + 1, replaced, i + 1)) {
|
||||||
is_best = true;
|
has_best = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (st->exit_early) {
|
if (st->exit_early) {
|
||||||
|
@ -291,7 +292,7 @@ static bool match_obj_(struct match_state *st, size_t skips, size_t score, size_
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_best) {
|
if (has_best) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue