x11 backend: add wlr_output_is_x11

This commit is contained in:
Dominique Martinet 2017-12-19 19:49:46 +01:00
parent 3e228b0b2a
commit f83b16bc17
3 changed files with 6 additions and 1 deletions

View file

@ -401,3 +401,7 @@ static struct wlr_output_impl output_impl = {
.make_current = output_make_current,
.swap_buffers = output_swap_buffers,
};
bool wlr_output_is_x11(struct wlr_output *wlr_output) {
return wlr_output->impl == &output_impl;
}