mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
output_pick_format: Fail if no format could be chosen
This commit is contained in:
parent
75293d5fb0
commit
c4bed48fcc
1 changed files with 6 additions and 0 deletions
|
@ -220,6 +220,12 @@ bool output_pick_format(struct wlr_output *output,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (format->len == 0) {
|
||||||
|
wlr_drm_format_finish(format);
|
||||||
|
wlr_log(WLR_DEBUG, "Failed to pick output format");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue