Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

mfx wayland display: Add output_handle_done listener function #183

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions gst-libs/mfx/wayland/gstmfxdisplay_wayland.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,16 @@ output_handle_mode (void *data, struct wl_output *wl_output,
}
}

static void
output_handle_done (void *data, struct wl_output *wl_output)
{
/* NOT IMPLEMENTED */
}

static const struct wl_output_listener output_listener = {
output_handle_geometry,
output_handle_mode,
output_handle_done,
};

/* DRM listeners for wl_drm interface */
Expand Down