blob: c0afc6954022ae4a2604843609b3d5eb1b2b8b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _FX_UTIL_H
#define _FX_UTIL_H
#include <stdbool.h>
#include <stdlib.h>
#include <wlr/backend/interface.h>
bool open_preferred_drm_fd(struct wlr_backend *backend, int *drm_fd_ptr,
bool *own_drm_fd);
#endif
|