You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
304 B
13 lines
304 B
3 years ago
|
#include <wlr/util/log.h>
|
||
|
|
||
|
#include "render/dmabuf.h"
|
||
|
|
||
|
bool dmabuf_check_sync_file_import_export(void) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool dmabuf_import_sync_file(int dmabuf_fd, uint32_t flags, int sync_file_fd) {
|
||
|
wlr_log(WLR_ERROR, "DMA-BUF sync_file import IOCTL not available on this system");
|
||
|
return false;
|
||
|
}
|