Screen flushing types

Types of flushing options.

Synopsis:

#include <screen/screen.h>
 
 enum {
      SCREEN_WAIT_IDLE = (1 << 0)   
      SCREEN_PROTECTED = (1 << 1)   
      SCREEN_DONT_FLUSH = (1 << 2)   
      SCREEN_POST_RESUME = (1 << 3)   
      SCREEN_POST_RESIZE = (1 << 4)   
};

Data:

SCREEN_WAIT_IDLE
Indicates that the function will block until the operation has completed.
SCREEN_PROTECTED
SCREEN_DONT_FLUSH
SCREEN_POST_RESUME
SCREEN_POST_RESIZE

Library:

libscreen

Description: