mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-21 22:52:20 +00:00
examples/simple: use wlr_output_preferred_mode
This commit is contained in:
parent
c236f60bb6
commit
801c7670b7
@ -80,9 +80,9 @@ static void new_output_notify(struct wl_listener *listener, void *data) {
|
||||
wl_container_of(listener, sample, new_output);
|
||||
struct sample_output *sample_output =
|
||||
calloc(1, sizeof(struct sample_output));
|
||||
if (!wl_list_empty(&output->modes)) {
|
||||
struct wlr_output_mode *mode =
|
||||
wl_container_of(output->modes.prev, mode, link);
|
||||
|
||||
struct wlr_output_mode *mode = wlr_output_preferred_mode(output);
|
||||
if (mode != NULL) {
|
||||
wlr_output_set_mode(output, mode);
|
||||
}
|
||||
sample_output->output = output;
|
||||
|
Loading…
Reference in New Issue
Block a user