Screen flushing types

Types of flushing options

Synopsis:

#include <screen/screen.h>
enum {
    SCREEN_WAIT_IDLE = (1 << 0),
    SCREEN_DONT_BLOCK = (1 << 5)
};

Data:

SCREEN_WAIT_IDLE
Indicator that the function blocks until the operation has completed.
SCREEN_DONT_BLOCK
Indicator that the function returns immediately.

Library:

libscreen

Description:

These options aren't valid for the screen_acquire_buffer() function. If you are calling screen_acquire_buffer(), use Screen acquire buffer flags instead.