mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	References: https://lore.kernel.org/dri-devel/20220506180216.2095060-1-jason@jlekstrand.net/
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			C
		
	
	
	
	
	
#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;
 | 
						|
}
 |