mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-11-03 22:22:08 +00:00 
			
		
		
		
	[client] ds: add skipFrame method to interface
If this exists, it should be called when waitFrame returns but we don't wish to render.
This commit is contained in:
		@@ -150,10 +150,12 @@ struct LG_DisplayServerOps
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  /* Waits for a good time to render the next frame in time for the next vblank.
 | 
			
		||||
   * Once this returns, a frame must be rendered.
 | 
			
		||||
   * This is optional and a display server may choose to not implement it. */
 | 
			
		||||
  void (*waitFrame)(void);
 | 
			
		||||
 | 
			
		||||
  /* This must be called when waitFrame returns, but no frame is actually rendered. */
 | 
			
		||||
  void (*skipFrame)(void);
 | 
			
		||||
 | 
			
		||||
  /* dm specific cursor implementations */
 | 
			
		||||
  void (*guestPointerUpdated)(double x, double y, double localX, double localY);
 | 
			
		||||
  void (*setPointer)(LG_DSPointer pointer);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user