|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __SYNC_H |
|
|
#define __SYNC_H |
|
|
|
|
|
#include "xcb.h" |
|
|
#include "xproto.h" |
|
|
|
|
|
#ifdef __cplusplus |
|
|
extern "C" { |
|
|
#endif |
|
|
|
|
|
#define XCB_SYNC_MAJOR_VERSION 3 |
|
|
#define XCB_SYNC_MINOR_VERSION 1 |
|
|
|
|
|
extern xcb_extension_t xcb_sync_id; |
|
|
|
|
|
typedef uint32_t xcb_sync_alarm_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_alarm_iterator_t { |
|
|
xcb_sync_alarm_t *data; |
|
|
int rem; |
|
|
int index; |
|
|
} xcb_sync_alarm_iterator_t; |
|
|
|
|
|
typedef enum xcb_sync_alarmstate_t { |
|
|
XCB_SYNC_ALARMSTATE_ACTIVE = 0, |
|
|
XCB_SYNC_ALARMSTATE_INACTIVE = 1, |
|
|
XCB_SYNC_ALARMSTATE_DESTROYED = 2 |
|
|
} xcb_sync_alarmstate_t; |
|
|
|
|
|
typedef uint32_t xcb_sync_counter_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_counter_iterator_t { |
|
|
xcb_sync_counter_t *data; |
|
|
int rem; |
|
|
int index; |
|
|
} xcb_sync_counter_iterator_t; |
|
|
|
|
|
typedef uint32_t xcb_sync_fence_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_fence_iterator_t { |
|
|
xcb_sync_fence_t *data; |
|
|
int rem; |
|
|
int index; |
|
|
} xcb_sync_fence_iterator_t; |
|
|
|
|
|
typedef enum xcb_sync_testtype_t { |
|
|
XCB_SYNC_TESTTYPE_POSITIVE_TRANSITION = 0, |
|
|
XCB_SYNC_TESTTYPE_NEGATIVE_TRANSITION = 1, |
|
|
XCB_SYNC_TESTTYPE_POSITIVE_COMPARISON = 2, |
|
|
XCB_SYNC_TESTTYPE_NEGATIVE_COMPARISON = 3 |
|
|
} xcb_sync_testtype_t; |
|
|
|
|
|
typedef enum xcb_sync_valuetype_t { |
|
|
XCB_SYNC_VALUETYPE_ABSOLUTE = 0, |
|
|
XCB_SYNC_VALUETYPE_RELATIVE = 1 |
|
|
} xcb_sync_valuetype_t; |
|
|
|
|
|
typedef enum xcb_sync_ca_t { |
|
|
XCB_SYNC_CA_COUNTER = 1, |
|
|
XCB_SYNC_CA_VALUE_TYPE = 2, |
|
|
XCB_SYNC_CA_VALUE = 4, |
|
|
XCB_SYNC_CA_TEST_TYPE = 8, |
|
|
XCB_SYNC_CA_DELTA = 16, |
|
|
XCB_SYNC_CA_EVENTS = 32 |
|
|
} xcb_sync_ca_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_int64_t { |
|
|
int32_t hi; |
|
|
uint32_t lo; |
|
|
} xcb_sync_int64_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_int64_iterator_t { |
|
|
xcb_sync_int64_t *data; |
|
|
int rem; |
|
|
int index; |
|
|
} xcb_sync_int64_iterator_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_systemcounter_t { |
|
|
xcb_sync_counter_t counter; |
|
|
xcb_sync_int64_t resolution; |
|
|
uint16_t name_len; |
|
|
} xcb_sync_systemcounter_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_systemcounter_iterator_t { |
|
|
xcb_sync_systemcounter_t *data; |
|
|
int rem; |
|
|
int index; |
|
|
} xcb_sync_systemcounter_iterator_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_trigger_t { |
|
|
xcb_sync_counter_t counter; |
|
|
uint32_t wait_type; |
|
|
xcb_sync_int64_t wait_value; |
|
|
uint32_t test_type; |
|
|
} xcb_sync_trigger_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_trigger_iterator_t { |
|
|
xcb_sync_trigger_t *data; |
|
|
int rem; |
|
|
int index; |
|
|
} xcb_sync_trigger_iterator_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_waitcondition_t { |
|
|
xcb_sync_trigger_t trigger; |
|
|
xcb_sync_int64_t event_threshold; |
|
|
} xcb_sync_waitcondition_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_waitcondition_iterator_t { |
|
|
xcb_sync_waitcondition_t *data; |
|
|
int rem; |
|
|
int index; |
|
|
} xcb_sync_waitcondition_iterator_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_COUNTER 0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_counter_error_t { |
|
|
uint8_t response_type; |
|
|
uint8_t error_code; |
|
|
uint16_t sequence; |
|
|
uint32_t bad_counter; |
|
|
uint16_t minor_opcode; |
|
|
uint8_t major_opcode; |
|
|
} xcb_sync_counter_error_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_ALARM 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_alarm_error_t { |
|
|
uint8_t response_type; |
|
|
uint8_t error_code; |
|
|
uint16_t sequence; |
|
|
uint32_t bad_alarm; |
|
|
uint16_t minor_opcode; |
|
|
uint8_t major_opcode; |
|
|
} xcb_sync_alarm_error_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_initialize_cookie_t { |
|
|
unsigned int sequence; |
|
|
} xcb_sync_initialize_cookie_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_INITIALIZE 0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_initialize_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
uint8_t desired_major_version; |
|
|
uint8_t desired_minor_version; |
|
|
} xcb_sync_initialize_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_initialize_reply_t { |
|
|
uint8_t response_type; |
|
|
uint8_t pad0; |
|
|
uint16_t sequence; |
|
|
uint32_t length; |
|
|
uint8_t major_version; |
|
|
uint8_t minor_version; |
|
|
uint8_t pad1[22]; |
|
|
} xcb_sync_initialize_reply_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_list_system_counters_cookie_t { |
|
|
unsigned int sequence; |
|
|
} xcb_sync_list_system_counters_cookie_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_LIST_SYSTEM_COUNTERS 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_list_system_counters_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
} xcb_sync_list_system_counters_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_list_system_counters_reply_t { |
|
|
uint8_t response_type; |
|
|
uint8_t pad0; |
|
|
uint16_t sequence; |
|
|
uint32_t length; |
|
|
uint32_t counters_len; |
|
|
uint8_t pad1[20]; |
|
|
} xcb_sync_list_system_counters_reply_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_CREATE_COUNTER 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_create_counter_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_counter_t id; |
|
|
xcb_sync_int64_t initial_value; |
|
|
} xcb_sync_create_counter_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_DESTROY_COUNTER 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_destroy_counter_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_counter_t counter; |
|
|
} xcb_sync_destroy_counter_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_counter_cookie_t { |
|
|
unsigned int sequence; |
|
|
} xcb_sync_query_counter_cookie_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_QUERY_COUNTER 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_counter_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_counter_t counter; |
|
|
} xcb_sync_query_counter_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_counter_reply_t { |
|
|
uint8_t response_type; |
|
|
uint8_t pad0; |
|
|
uint16_t sequence; |
|
|
uint32_t length; |
|
|
xcb_sync_int64_t counter_value; |
|
|
} xcb_sync_query_counter_reply_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_AWAIT 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_await_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
} xcb_sync_await_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_CHANGE_COUNTER 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_change_counter_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_counter_t counter; |
|
|
xcb_sync_int64_t amount; |
|
|
} xcb_sync_change_counter_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_SET_COUNTER 3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_set_counter_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_counter_t counter; |
|
|
xcb_sync_int64_t value; |
|
|
} xcb_sync_set_counter_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_create_alarm_value_list_t { |
|
|
xcb_sync_counter_t counter; |
|
|
uint32_t valueType; |
|
|
xcb_sync_int64_t value; |
|
|
uint32_t testType; |
|
|
xcb_sync_int64_t delta; |
|
|
uint32_t events; |
|
|
} xcb_sync_create_alarm_value_list_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_CREATE_ALARM 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_create_alarm_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_alarm_t id; |
|
|
uint32_t value_mask; |
|
|
} xcb_sync_create_alarm_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_change_alarm_value_list_t { |
|
|
xcb_sync_counter_t counter; |
|
|
uint32_t valueType; |
|
|
xcb_sync_int64_t value; |
|
|
uint32_t testType; |
|
|
xcb_sync_int64_t delta; |
|
|
uint32_t events; |
|
|
} xcb_sync_change_alarm_value_list_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_CHANGE_ALARM 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_change_alarm_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_alarm_t id; |
|
|
uint32_t value_mask; |
|
|
} xcb_sync_change_alarm_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_DESTROY_ALARM 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_destroy_alarm_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_alarm_t alarm; |
|
|
} xcb_sync_destroy_alarm_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_alarm_cookie_t { |
|
|
unsigned int sequence; |
|
|
} xcb_sync_query_alarm_cookie_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_QUERY_ALARM 10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_alarm_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_alarm_t alarm; |
|
|
} xcb_sync_query_alarm_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_alarm_reply_t { |
|
|
uint8_t response_type; |
|
|
uint8_t pad0; |
|
|
uint16_t sequence; |
|
|
uint32_t length; |
|
|
xcb_sync_trigger_t trigger; |
|
|
xcb_sync_int64_t delta; |
|
|
uint8_t events; |
|
|
uint8_t state; |
|
|
uint8_t pad1[2]; |
|
|
} xcb_sync_query_alarm_reply_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_SET_PRIORITY 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_set_priority_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
uint32_t id; |
|
|
int32_t priority; |
|
|
} xcb_sync_set_priority_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_get_priority_cookie_t { |
|
|
unsigned int sequence; |
|
|
} xcb_sync_get_priority_cookie_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_GET_PRIORITY 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_get_priority_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
uint32_t id; |
|
|
} xcb_sync_get_priority_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_get_priority_reply_t { |
|
|
uint8_t response_type; |
|
|
uint8_t pad0; |
|
|
uint16_t sequence; |
|
|
uint32_t length; |
|
|
int32_t priority; |
|
|
} xcb_sync_get_priority_reply_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_CREATE_FENCE 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_create_fence_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_drawable_t drawable; |
|
|
xcb_sync_fence_t fence; |
|
|
uint8_t initially_triggered; |
|
|
} xcb_sync_create_fence_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_TRIGGER_FENCE 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_trigger_fence_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_fence_t fence; |
|
|
} xcb_sync_trigger_fence_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_RESET_FENCE 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_reset_fence_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_fence_t fence; |
|
|
} xcb_sync_reset_fence_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_DESTROY_FENCE 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_destroy_fence_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_fence_t fence; |
|
|
} xcb_sync_destroy_fence_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_fence_cookie_t { |
|
|
unsigned int sequence; |
|
|
} xcb_sync_query_fence_cookie_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_QUERY_FENCE 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_fence_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
xcb_sync_fence_t fence; |
|
|
} xcb_sync_query_fence_request_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_query_fence_reply_t { |
|
|
uint8_t response_type; |
|
|
uint8_t pad0; |
|
|
uint16_t sequence; |
|
|
uint32_t length; |
|
|
uint8_t triggered; |
|
|
uint8_t pad1[23]; |
|
|
} xcb_sync_query_fence_reply_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_AWAIT_FENCE 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_await_fence_request_t { |
|
|
uint8_t major_opcode; |
|
|
uint8_t minor_opcode; |
|
|
uint16_t length; |
|
|
} xcb_sync_await_fence_request_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_COUNTER_NOTIFY 0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_counter_notify_event_t { |
|
|
uint8_t response_type; |
|
|
uint8_t kind; |
|
|
uint16_t sequence; |
|
|
xcb_sync_counter_t counter; |
|
|
xcb_sync_int64_t wait_value; |
|
|
xcb_sync_int64_t counter_value; |
|
|
xcb_timestamp_t timestamp; |
|
|
uint16_t count; |
|
|
uint8_t destroyed; |
|
|
uint8_t pad0; |
|
|
} xcb_sync_counter_notify_event_t; |
|
|
|
|
|
|
|
|
#define XCB_SYNC_ALARM_NOTIFY 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct xcb_sync_alarm_notify_event_t { |
|
|
uint8_t response_type; |
|
|
uint8_t kind; |
|
|
uint16_t sequence; |
|
|
xcb_sync_alarm_t alarm; |
|
|
xcb_sync_int64_t counter_value; |
|
|
xcb_sync_int64_t alarm_value; |
|
|
xcb_timestamp_t timestamp; |
|
|
uint8_t state; |
|
|
uint8_t pad0[3]; |
|
|
} xcb_sync_alarm_notify_event_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
xcb_sync_alarm_next (xcb_sync_alarm_iterator_t *i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_alarm_end (xcb_sync_alarm_iterator_t i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
xcb_sync_counter_next (xcb_sync_counter_iterator_t *i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_counter_end (xcb_sync_counter_iterator_t i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
xcb_sync_fence_next (xcb_sync_fence_iterator_t *i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_fence_end (xcb_sync_fence_iterator_t i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
xcb_sync_int64_next (xcb_sync_int64_iterator_t *i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_int64_end (xcb_sync_int64_iterator_t i); |
|
|
|
|
|
int |
|
|
xcb_sync_systemcounter_sizeof (const void *_buffer); |
|
|
|
|
|
char * |
|
|
xcb_sync_systemcounter_name (const xcb_sync_systemcounter_t *R); |
|
|
|
|
|
int |
|
|
xcb_sync_systemcounter_name_length (const xcb_sync_systemcounter_t *R); |
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_systemcounter_name_end (const xcb_sync_systemcounter_t *R); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
xcb_sync_systemcounter_next (xcb_sync_systemcounter_iterator_t *i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_systemcounter_end (xcb_sync_systemcounter_iterator_t i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
xcb_sync_trigger_next (xcb_sync_trigger_iterator_t *i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_trigger_end (xcb_sync_trigger_iterator_t i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
xcb_sync_waitcondition_next (xcb_sync_waitcondition_iterator_t *i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_waitcondition_end (xcb_sync_waitcondition_iterator_t i); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_initialize_cookie_t |
|
|
xcb_sync_initialize (xcb_connection_t *c, |
|
|
uint8_t desired_major_version, |
|
|
uint8_t desired_minor_version); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_initialize_cookie_t |
|
|
xcb_sync_initialize_unchecked (xcb_connection_t *c, |
|
|
uint8_t desired_major_version, |
|
|
uint8_t desired_minor_version); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_initialize_reply_t * |
|
|
xcb_sync_initialize_reply (xcb_connection_t *c, |
|
|
xcb_sync_initialize_cookie_t cookie , |
|
|
xcb_generic_error_t **e); |
|
|
|
|
|
int |
|
|
xcb_sync_list_system_counters_sizeof (const void *_buffer); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_list_system_counters_cookie_t |
|
|
xcb_sync_list_system_counters (xcb_connection_t *c); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_list_system_counters_cookie_t |
|
|
xcb_sync_list_system_counters_unchecked (xcb_connection_t *c); |
|
|
|
|
|
int |
|
|
xcb_sync_list_system_counters_counters_length (const xcb_sync_list_system_counters_reply_t *R); |
|
|
|
|
|
xcb_sync_systemcounter_iterator_t |
|
|
xcb_sync_list_system_counters_counters_iterator (const xcb_sync_list_system_counters_reply_t *R); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_list_system_counters_reply_t * |
|
|
xcb_sync_list_system_counters_reply (xcb_connection_t *c, |
|
|
xcb_sync_list_system_counters_cookie_t cookie , |
|
|
xcb_generic_error_t **e); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_counter_checked (xcb_connection_t *c, |
|
|
xcb_sync_counter_t id, |
|
|
xcb_sync_int64_t initial_value); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_counter (xcb_connection_t *c, |
|
|
xcb_sync_counter_t id, |
|
|
xcb_sync_int64_t initial_value); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_destroy_counter_checked (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_destroy_counter (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_counter_cookie_t |
|
|
xcb_sync_query_counter (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_counter_cookie_t |
|
|
xcb_sync_query_counter_unchecked (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_counter_reply_t * |
|
|
xcb_sync_query_counter_reply (xcb_connection_t *c, |
|
|
xcb_sync_query_counter_cookie_t cookie , |
|
|
xcb_generic_error_t **e); |
|
|
|
|
|
int |
|
|
xcb_sync_await_sizeof (const void *_buffer, |
|
|
uint32_t wait_list_len); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_await_checked (xcb_connection_t *c, |
|
|
uint32_t wait_list_len, |
|
|
const xcb_sync_waitcondition_t *wait_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_await (xcb_connection_t *c, |
|
|
uint32_t wait_list_len, |
|
|
const xcb_sync_waitcondition_t *wait_list); |
|
|
|
|
|
xcb_sync_waitcondition_t * |
|
|
xcb_sync_await_wait_list (const xcb_sync_await_request_t *R); |
|
|
|
|
|
int |
|
|
xcb_sync_await_wait_list_length (const xcb_sync_await_request_t *R); |
|
|
|
|
|
xcb_sync_waitcondition_iterator_t |
|
|
xcb_sync_await_wait_list_iterator (const xcb_sync_await_request_t *R); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_change_counter_checked (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter, |
|
|
xcb_sync_int64_t amount); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_change_counter (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter, |
|
|
xcb_sync_int64_t amount); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_set_counter_checked (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter, |
|
|
xcb_sync_int64_t value); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_set_counter (xcb_connection_t *c, |
|
|
xcb_sync_counter_t counter, |
|
|
xcb_sync_int64_t value); |
|
|
|
|
|
int |
|
|
xcb_sync_create_alarm_value_list_serialize (void **_buffer, |
|
|
uint32_t value_mask, |
|
|
const xcb_sync_create_alarm_value_list_t *_aux); |
|
|
|
|
|
int |
|
|
xcb_sync_create_alarm_value_list_unpack (const void *_buffer, |
|
|
uint32_t value_mask, |
|
|
xcb_sync_create_alarm_value_list_t *_aux); |
|
|
|
|
|
int |
|
|
xcb_sync_create_alarm_value_list_sizeof (const void *_buffer, |
|
|
uint32_t value_mask); |
|
|
|
|
|
int |
|
|
xcb_sync_create_alarm_sizeof (const void *_buffer); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_alarm_checked (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const void *value_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_alarm (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const void *value_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_alarm_aux_checked (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const xcb_sync_create_alarm_value_list_t *value_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_alarm_aux (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const xcb_sync_create_alarm_value_list_t *value_list); |
|
|
|
|
|
void * |
|
|
xcb_sync_create_alarm_value_list (const xcb_sync_create_alarm_request_t *R); |
|
|
|
|
|
int |
|
|
xcb_sync_change_alarm_value_list_serialize (void **_buffer, |
|
|
uint32_t value_mask, |
|
|
const xcb_sync_change_alarm_value_list_t *_aux); |
|
|
|
|
|
int |
|
|
xcb_sync_change_alarm_value_list_unpack (const void *_buffer, |
|
|
uint32_t value_mask, |
|
|
xcb_sync_change_alarm_value_list_t *_aux); |
|
|
|
|
|
int |
|
|
xcb_sync_change_alarm_value_list_sizeof (const void *_buffer, |
|
|
uint32_t value_mask); |
|
|
|
|
|
int |
|
|
xcb_sync_change_alarm_sizeof (const void *_buffer); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_change_alarm_checked (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const void *value_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_change_alarm (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const void *value_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_change_alarm_aux_checked (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const xcb_sync_change_alarm_value_list_t *value_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_change_alarm_aux (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t id, |
|
|
uint32_t value_mask, |
|
|
const xcb_sync_change_alarm_value_list_t *value_list); |
|
|
|
|
|
void * |
|
|
xcb_sync_change_alarm_value_list (const xcb_sync_change_alarm_request_t *R); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_destroy_alarm_checked (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t alarm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_destroy_alarm (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t alarm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_alarm_cookie_t |
|
|
xcb_sync_query_alarm (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t alarm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_alarm_cookie_t |
|
|
xcb_sync_query_alarm_unchecked (xcb_connection_t *c, |
|
|
xcb_sync_alarm_t alarm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_alarm_reply_t * |
|
|
xcb_sync_query_alarm_reply (xcb_connection_t *c, |
|
|
xcb_sync_query_alarm_cookie_t cookie , |
|
|
xcb_generic_error_t **e); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_set_priority_checked (xcb_connection_t *c, |
|
|
uint32_t id, |
|
|
int32_t priority); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_set_priority (xcb_connection_t *c, |
|
|
uint32_t id, |
|
|
int32_t priority); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_get_priority_cookie_t |
|
|
xcb_sync_get_priority (xcb_connection_t *c, |
|
|
uint32_t id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_get_priority_cookie_t |
|
|
xcb_sync_get_priority_unchecked (xcb_connection_t *c, |
|
|
uint32_t id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_get_priority_reply_t * |
|
|
xcb_sync_get_priority_reply (xcb_connection_t *c, |
|
|
xcb_sync_get_priority_cookie_t cookie , |
|
|
xcb_generic_error_t **e); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_fence_checked (xcb_connection_t *c, |
|
|
xcb_drawable_t drawable, |
|
|
xcb_sync_fence_t fence, |
|
|
uint8_t initially_triggered); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_create_fence (xcb_connection_t *c, |
|
|
xcb_drawable_t drawable, |
|
|
xcb_sync_fence_t fence, |
|
|
uint8_t initially_triggered); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_trigger_fence_checked (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_trigger_fence (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_reset_fence_checked (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_reset_fence (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_destroy_fence_checked (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_destroy_fence (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_fence_cookie_t |
|
|
xcb_sync_query_fence (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_fence_cookie_t |
|
|
xcb_sync_query_fence_unchecked (xcb_connection_t *c, |
|
|
xcb_sync_fence_t fence); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_sync_query_fence_reply_t * |
|
|
xcb_sync_query_fence_reply (xcb_connection_t *c, |
|
|
xcb_sync_query_fence_cookie_t cookie , |
|
|
xcb_generic_error_t **e); |
|
|
|
|
|
int |
|
|
xcb_sync_await_fence_sizeof (const void *_buffer, |
|
|
uint32_t fence_list_len); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_await_fence_checked (xcb_connection_t *c, |
|
|
uint32_t fence_list_len, |
|
|
const xcb_sync_fence_t *fence_list); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcb_void_cookie_t |
|
|
xcb_sync_await_fence (xcb_connection_t *c, |
|
|
uint32_t fence_list_len, |
|
|
const xcb_sync_fence_t *fence_list); |
|
|
|
|
|
xcb_sync_fence_t * |
|
|
xcb_sync_await_fence_fence_list (const xcb_sync_await_fence_request_t *R); |
|
|
|
|
|
int |
|
|
xcb_sync_await_fence_fence_list_length (const xcb_sync_await_fence_request_t *R); |
|
|
|
|
|
xcb_generic_iterator_t |
|
|
xcb_sync_await_fence_fence_list_end (const xcb_sync_await_fence_request_t *R); |
|
|
|
|
|
|
|
|
#ifdef __cplusplus |
|
|
} |
|
|
#endif |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|