In contrast to screen flip mode this mode: * supports flips per windows (these windows currently need to have the same size as their parent windows with the same pixmap), * sends pixmap idle signals to the client only after the driver has given an additional event notify. This patch only introduces the new mode as a stub. It additionally needs a driver hook, such that it can get initialized and appropriate cleanup functions. Signed-off-by: Roman Gilg <subdiff@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			402 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			402 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
noinst_LTLIBRARIES = libpresent.la
 | 
						|
AM_CFLAGS = \
 | 
						|
	-DHAVE_XORG_CONFIG_H \
 | 
						|
	@DIX_CFLAGS@ @XORG_CFLAGS@
 | 
						|
 | 
						|
libpresent_la_SOURCES = \
 | 
						|
	present.h \
 | 
						|
	present.c \
 | 
						|
	present_event.c \
 | 
						|
	present_execute.c \
 | 
						|
	present_fake.c \
 | 
						|
	present_fence.c \
 | 
						|
	present_notify.c \
 | 
						|
	present_priv.h \
 | 
						|
	present_request.c \
 | 
						|
	present_scmd.c \
 | 
						|
	present_screen.c \
 | 
						|
	present_vblank.c \
 | 
						|
	present_wnmd.c
 | 
						|
 | 
						|
sdk_HEADERS = present.h presentext.h
 |