| dri2.h | | dri2.h | |
| | | | |
| skipping to change at line 23 | | skipping to change at line 23 | |
| #define __DRI2_H | | #define __DRI2_H | |
| | | | |
| #include "xcb.h" | | #include "xcb.h" | |
| #include "xproto.h" | | #include "xproto.h" | |
| | | | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| extern "C" { | | extern "C" { | |
| #endif | | #endif | |
| | | | |
| #define XCB_DRI2_MAJOR_VERSION 1 | | #define XCB_DRI2_MAJOR_VERSION 1 | |
|
| #define XCB_DRI2_MINOR_VERSION 1 | | #define XCB_DRI2_MINOR_VERSION 3 | |
| | | | |
| extern xcb_extension_t xcb_dri2_id; | | extern xcb_extension_t xcb_dri2_id; | |
| | | | |
| typedef enum xcb_dri2_attachment_t { | | typedef enum xcb_dri2_attachment_t { | |
| XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT, | | XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT, | |
| XCB_DRI2_ATTACHMENT_BUFFER_BACK_LEFT, | | XCB_DRI2_ATTACHMENT_BUFFER_BACK_LEFT, | |
| XCB_DRI2_ATTACHMENT_BUFFER_FRONT_RIGHT, | | XCB_DRI2_ATTACHMENT_BUFFER_FRONT_RIGHT, | |
| XCB_DRI2_ATTACHMENT_BUFFER_BACK_RIGHT, | | XCB_DRI2_ATTACHMENT_BUFFER_BACK_RIGHT, | |
| XCB_DRI2_ATTACHMENT_BUFFER_DEPTH, | | XCB_DRI2_ATTACHMENT_BUFFER_DEPTH, | |
| XCB_DRI2_ATTACHMENT_BUFFER_STENCIL, | | XCB_DRI2_ATTACHMENT_BUFFER_STENCIL, | |
| XCB_DRI2_ATTACHMENT_BUFFER_ACCUM, | | XCB_DRI2_ATTACHMENT_BUFFER_ACCUM, | |
| XCB_DRI2_ATTACHMENT_BUFFER_FAKE_FRONT_LEFT, | | XCB_DRI2_ATTACHMENT_BUFFER_FAKE_FRONT_LEFT, | |
| XCB_DRI2_ATTACHMENT_BUFFER_FAKE_FRONT_RIGHT, | | XCB_DRI2_ATTACHMENT_BUFFER_FAKE_FRONT_RIGHT, | |
|
| XCB_DRI2_ATTACHMENT_BUFFER_DEPTH_STENCIL | | XCB_DRI2_ATTACHMENT_BUFFER_DEPTH_STENCIL, | |
| | | XCB_DRI2_ATTACHMENT_BUFFER_HIZ | |
| } xcb_dri2_attachment_t; | | } xcb_dri2_attachment_t; | |
| | | | |
| typedef enum xcb_dri2_driver_type_t { | | typedef enum xcb_dri2_driver_type_t { | |
|
| XCB_DRI2_DRIVER_TYPE_DRI | | XCB_DRI2_DRIVER_TYPE_DRI, | |
| | | XCB_DRI2_DRIVER_TYPE_VDPAU | |
| } xcb_dri2_driver_type_t; | | } xcb_dri2_driver_type_t; | |
| | | | |
|
| | | typedef enum xcb_dri2_event_type_t { | |
| | | XCB_DRI2_EVENT_TYPE_EXCHANGE_COMPLETE = 1, | |
| | | XCB_DRI2_EVENT_TYPE_BLIT_COMPLETE = 2, | |
| | | XCB_DRI2_EVENT_TYPE_FLIP_COMPLETE = 3 | |
| | | } xcb_dri2_event_type_t; | |
| | | | |
| /** | | /** | |
| * @brief xcb_dri2_dri2_buffer_t | | * @brief xcb_dri2_dri2_buffer_t | |
| **/ | | **/ | |
| typedef struct xcb_dri2_dri2_buffer_t { | | typedef struct xcb_dri2_dri2_buffer_t { | |
| uint32_t attachment; /**< */ | | uint32_t attachment; /**< */ | |
| uint32_t name; /**< */ | | uint32_t name; /**< */ | |
| uint32_t pitch; /**< */ | | uint32_t pitch; /**< */ | |
| uint32_t cpp; /**< */ | | uint32_t cpp; /**< */ | |
| uint32_t flags; /**< */ | | uint32_t flags; /**< */ | |
| } xcb_dri2_dri2_buffer_t; | | } xcb_dri2_dri2_buffer_t; | |
| | | | |
| skipping to change at line 310 | | skipping to change at line 318 | |
| uint8_t pad0; /**< */ | | uint8_t pad0; /**< */ | |
| uint16_t sequence; /**< */ | | uint16_t sequence; /**< */ | |
| uint32_t length; /**< */ | | uint32_t length; /**< */ | |
| uint32_t width; /**< */ | | uint32_t width; /**< */ | |
| uint32_t height; /**< */ | | uint32_t height; /**< */ | |
| uint32_t count; /**< */ | | uint32_t count; /**< */ | |
| uint8_t pad1[12]; /**< */ | | uint8_t pad1[12]; /**< */ | |
| } xcb_dri2_get_buffers_with_format_reply_t; | | } xcb_dri2_get_buffers_with_format_reply_t; | |
| | | | |
| /** | | /** | |
|
| | | * @brief xcb_dri2_swap_buffers_cookie_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_swap_buffers_cookie_t { | |
| | | unsigned int sequence; /**< */ | |
| | | } xcb_dri2_swap_buffers_cookie_t; | |
| | | | |
| | | /** Opcode for xcb_dri2_swap_buffers. */ | |
| | | #define XCB_DRI2_SWAP_BUFFERS 8 | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_swap_buffers_request_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_swap_buffers_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | xcb_drawable_t drawable; /**< */ | |
| | | uint32_t target_msc_hi; /**< */ | |
| | | uint32_t target_msc_lo; /**< */ | |
| | | uint32_t divisor_hi; /**< */ | |
| | | uint32_t divisor_lo; /**< */ | |
| | | uint32_t remainder_hi; /**< */ | |
| | | uint32_t remainder_lo; /**< */ | |
| | | } xcb_dri2_swap_buffers_request_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_swap_buffers_reply_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_swap_buffers_reply_t { | |
| | | uint8_t response_type; /**< */ | |
| | | uint8_t pad0; /**< */ | |
| | | uint16_t sequence; /**< */ | |
| | | uint32_t length; /**< */ | |
| | | uint32_t swap_hi; /**< */ | |
| | | uint32_t swap_lo; /**< */ | |
| | | } xcb_dri2_swap_buffers_reply_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_get_msc_cookie_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_get_msc_cookie_t { | |
| | | unsigned int sequence; /**< */ | |
| | | } xcb_dri2_get_msc_cookie_t; | |
| | | | |
| | | /** Opcode for xcb_dri2_get_msc. */ | |
| | | #define XCB_DRI2_GET_MSC 9 | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_get_msc_request_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_get_msc_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | xcb_drawable_t drawable; /**< */ | |
| | | } xcb_dri2_get_msc_request_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_get_msc_reply_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_get_msc_reply_t { | |
| | | uint8_t response_type; /**< */ | |
| | | uint8_t pad0; /**< */ | |
| | | uint16_t sequence; /**< */ | |
| | | uint32_t length; /**< */ | |
| | | uint32_t ust_hi; /**< */ | |
| | | uint32_t ust_lo; /**< */ | |
| | | uint32_t msc_hi; /**< */ | |
| | | uint32_t msc_lo; /**< */ | |
| | | uint32_t sbc_hi; /**< */ | |
| | | uint32_t sbc_lo; /**< */ | |
| | | } xcb_dri2_get_msc_reply_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_wait_msc_cookie_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_wait_msc_cookie_t { | |
| | | unsigned int sequence; /**< */ | |
| | | } xcb_dri2_wait_msc_cookie_t; | |
| | | | |
| | | /** Opcode for xcb_dri2_wait_msc. */ | |
| | | #define XCB_DRI2_WAIT_MSC 10 | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_wait_msc_request_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_wait_msc_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | xcb_drawable_t drawable; /**< */ | |
| | | uint32_t target_msc_hi; /**< */ | |
| | | uint32_t target_msc_lo; /**< */ | |
| | | uint32_t divisor_hi; /**< */ | |
| | | uint32_t divisor_lo; /**< */ | |
| | | uint32_t remainder_hi; /**< */ | |
| | | uint32_t remainder_lo; /**< */ | |
| | | } xcb_dri2_wait_msc_request_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_wait_msc_reply_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_wait_msc_reply_t { | |
| | | uint8_t response_type; /**< */ | |
| | | uint8_t pad0; /**< */ | |
| | | uint16_t sequence; /**< */ | |
| | | uint32_t length; /**< */ | |
| | | uint32_t ust_hi; /**< */ | |
| | | uint32_t ust_lo; /**< */ | |
| | | uint32_t msc_hi; /**< */ | |
| | | uint32_t msc_lo; /**< */ | |
| | | uint32_t sbc_hi; /**< */ | |
| | | uint32_t sbc_lo; /**< */ | |
| | | } xcb_dri2_wait_msc_reply_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_wait_sbc_cookie_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_wait_sbc_cookie_t { | |
| | | unsigned int sequence; /**< */ | |
| | | } xcb_dri2_wait_sbc_cookie_t; | |
| | | | |
| | | /** Opcode for xcb_dri2_wait_sbc. */ | |
| | | #define XCB_DRI2_WAIT_SBC 11 | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_wait_sbc_request_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_wait_sbc_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | xcb_drawable_t drawable; /**< */ | |
| | | uint32_t target_sbc_hi; /**< */ | |
| | | uint32_t target_sbc_lo; /**< */ | |
| | | } xcb_dri2_wait_sbc_request_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_wait_sbc_reply_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_wait_sbc_reply_t { | |
| | | uint8_t response_type; /**< */ | |
| | | uint8_t pad0; /**< */ | |
| | | uint16_t sequence; /**< */ | |
| | | uint32_t length; /**< */ | |
| | | uint32_t ust_hi; /**< */ | |
| | | uint32_t ust_lo; /**< */ | |
| | | uint32_t msc_hi; /**< */ | |
| | | uint32_t msc_lo; /**< */ | |
| | | uint32_t sbc_hi; /**< */ | |
| | | uint32_t sbc_lo; /**< */ | |
| | | } xcb_dri2_wait_sbc_reply_t; | |
| | | | |
| | | /** Opcode for xcb_dri2_swap_interval. */ | |
| | | #define XCB_DRI2_SWAP_INTERVAL 12 | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_swap_interval_request_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_swap_interval_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | xcb_drawable_t drawable; /**< */ | |
| | | uint32_t interval; /**< */ | |
| | | } xcb_dri2_swap_interval_request_t; | |
| | | | |
| | | /** Opcode for xcb_dri2_buffer_swap_complete. */ | |
| | | #define XCB_DRI2_BUFFER_SWAP_COMPLETE 0 | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_buffer_swap_complete_event_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_buffer_swap_complete_event_t { | |
| | | uint8_t response_type; /**< */ | |
| | | uint8_t pad0; /**< */ | |
| | | uint16_t sequence; /**< */ | |
| | | uint16_t event_type; /**< */ | |
| | | uint8_t pad1[2]; /**< */ | |
| | | xcb_drawable_t drawable; /**< */ | |
| | | uint32_t ust_hi; /**< */ | |
| | | uint32_t ust_lo; /**< */ | |
| | | uint32_t msc_hi; /**< */ | |
| | | uint32_t msc_lo; /**< */ | |
| | | uint32_t sbc; /**< */ | |
| | | } xcb_dri2_buffer_swap_complete_event_t; | |
| | | | |
| | | /** Opcode for xcb_dri2_invalidate_buffers. */ | |
| | | #define XCB_DRI2_INVALIDATE_BUFFERS 1 | |
| | | | |
| | | /** | |
| | | * @brief xcb_dri2_invalidate_buffers_event_t | |
| | | **/ | |
| | | typedef struct xcb_dri2_invalidate_buffers_event_t { | |
| | | uint8_t response_type; /**< */ | |
| | | uint8_t pad0; /**< */ | |
| | | uint16_t sequence; /**< */ | |
| | | xcb_drawable_t drawable; /**< */ | |
| | | } xcb_dri2_invalidate_buffers_event_t; | |
| | | | |
| | | /** | |
| * Get the next element of the iterator | | * Get the next element of the iterator | |
| * @param i Pointer to a xcb_dri2_dri2_buffer_iterator_t | | * @param i Pointer to a xcb_dri2_dri2_buffer_iterator_t | |
| * | | * | |
| * Get the next element in the iterator. The member rem is | | * Get the next element in the iterator. The member rem is | |
| * decreased by one. The member data points to the next | | * decreased by one. The member data points to the next | |
| * element. The member index is increased by sizeof(xcb_dri2_dri2_buffer_t) | | * element. The member index is increased by sizeof(xcb_dri2_dri2_buffer_t) | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| | | | |
| skipping to change at line 479 | | skipping to change at line 688 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_dri2_query_version_reply_t * | | ** @returns xcb_dri2_query_version_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_dri2_query_version_reply_t * | | xcb_dri2_query_version_reply_t * | |
| xcb_dri2_query_version_reply (xcb_connection_t *c /**< */, | | xcb_dri2_query_version_reply (xcb_connection_t *c /**< */, | |
| xcb_dri2_query_version_cookie_t cookie /**
< */, | | xcb_dri2_query_version_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_dri2_connect_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 570 | | skipping to change at line 782 | |
| ** @param const xcb_dri2_connect_reply_t *R | | ** @param const xcb_dri2_connect_reply_t *R | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_dri2_connect_driver_name_end (const xcb_dri2_connect_reply_t *R /**< *
/); | | xcb_dri2_connect_driver_name_end (const xcb_dri2_connect_reply_t *R /**< *
/); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
|
| | | ** void * xcb_dri2_connect_alignment_pad | |
| | | ** | |
| | | ** @param const xcb_dri2_connect_reply_t *R | |
| | | ** @returns void * | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | void * | |
| | | xcb_dri2_connect_alignment_pad (const xcb_dri2_connect_reply_t *R /**< */) | |
| | | ; | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** int xcb_dri2_connect_alignment_pad_length | |
| | | ** | |
| | | ** @param const xcb_dri2_connect_reply_t *R | |
| | | ** @returns int | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | int | |
| | | xcb_dri2_connect_alignment_pad_length (const xcb_dri2_connect_reply_t *R / | |
| | | **< */); | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_generic_iterator_t xcb_dri2_connect_alignment_pad_end | |
| | | ** | |
| | | ** @param const xcb_dri2_connect_reply_t *R | |
| | | ** @returns xcb_generic_iterator_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_generic_iterator_t | |
| | | xcb_dri2_connect_alignment_pad_end (const xcb_dri2_connect_reply_t *R /**< | |
| | | */); | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| ** char * xcb_dri2_connect_device_name | | ** char * xcb_dri2_connect_device_name | |
| ** | | ** | |
| ** @param const xcb_dri2_connect_reply_t *R | | ** @param const xcb_dri2_connect_reply_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| xcb_dri2_connect_device_name (const xcb_dri2_connect_reply_t *R /**< */); | | xcb_dri2_connect_device_name (const xcb_dri2_connect_reply_t *R /**< */); | |
| | | | |
| | | | |
| skipping to change at line 817 | | skipping to change at line 1065 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_drawable_t drawable | | ** @param xcb_drawable_t drawable | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_dri2_destroy_drawable (xcb_connection_t *c /**< */, | | xcb_dri2_destroy_drawable (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */); | | xcb_drawable_t drawable /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_dri2_get_buffers_sizeof (const void *_buffer /**< */, | |
| | | uint32_t attachments_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1037 | | skipping to change at line 1289 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_dri2_copy_region_reply_t * | | ** @returns xcb_dri2_copy_region_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_dri2_copy_region_reply_t * | | xcb_dri2_copy_region_reply_t * | |
| xcb_dri2_copy_region_reply (xcb_connection_t *c /**< */, | | xcb_dri2_copy_region_reply (xcb_connection_t *c /**< */, | |
| xcb_dri2_copy_region_cookie_t cookie /**< */
, | | xcb_dri2_copy_region_cookie_t cookie /**< */
, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_dri2_get_buffers_with_format_sizeof (const void *_buffer /**< */, | |
| | | uint32_t attachments_len /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1165 | | skipping to change at line 1421 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_dri2_get_buffers_with_format_reply_t * | | ** @returns xcb_dri2_get_buffers_with_format_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_dri2_get_buffers_with_format_reply_t * | | xcb_dri2_get_buffers_with_format_reply_t * | |
| xcb_dri2_get_buffers_with_format_reply (xcb_connection_t
*c /**< */, | | xcb_dri2_get_buffers_with_format_reply (xcb_connection_t
*c /**< */, | |
| xcb_dri2_get_buffers_with_format_co
okie_t cookie /**< */, | | xcb_dri2_get_buffers_with_format_co
okie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_swap_buffers_cookie_t xcb_dri2_swap_buffers | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t target_msc_hi | |
| | | ** @param uint32_t target_msc_lo | |
| | | ** @param uint32_t divisor_hi | |
| | | ** @param uint32_t divisor_lo | |
| | | ** @param uint32_t remainder_hi | |
| | | ** @param uint32_t remainder_lo | |
| | | ** @returns xcb_dri2_swap_buffers_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_swap_buffers_cookie_t | |
| | | xcb_dri2_swap_buffers (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t target_msc_hi /**< */, | |
| | | uint32_t target_msc_lo /**< */, | |
| | | uint32_t divisor_hi /**< */, | |
| | | uint32_t divisor_lo /**< */, | |
| | | uint32_t remainder_hi /**< */, | |
| | | uint32_t remainder_lo /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * placed in the event queue. | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_swap_buffers_cookie_t xcb_dri2_swap_buffers_unchecked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t target_msc_hi | |
| | | ** @param uint32_t target_msc_lo | |
| | | ** @param uint32_t divisor_hi | |
| | | ** @param uint32_t divisor_lo | |
| | | ** @param uint32_t remainder_hi | |
| | | ** @param uint32_t remainder_lo | |
| | | ** @returns xcb_dri2_swap_buffers_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_swap_buffers_cookie_t | |
| | | xcb_dri2_swap_buffers_unchecked (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t target_msc_hi /**< */, | |
| | | uint32_t target_msc_lo /**< */, | |
| | | uint32_t divisor_hi /**< */, | |
| | | uint32_t divisor_lo /**< */, | |
| | | uint32_t remainder_hi /**< */, | |
| | | uint32_t remainder_lo /**< */); | |
| | | | |
| | | /** | |
| | | * Return the reply | |
| | | * @param c The connection | |
| | | * @param cookie The cookie | |
| | | * @param e The xcb_generic_error_t supplied | |
| | | * | |
| | | * Returns the reply of the request asked by | |
| | | * | |
| | | * The parameter @p e supplied to this function must be NULL if | |
| | | * xcb_dri2_swap_buffers_unchecked(). is used. | |
| | | * Otherwise, it stores the error if any. | |
| | | * | |
| | | * The returned value must be freed by the caller using free(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_swap_buffers_reply_t * xcb_dri2_swap_buffers_reply | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_dri2_swap_buffers_cookie_t cookie | |
| | | ** @param xcb_generic_error_t **e | |
| | | ** @returns xcb_dri2_swap_buffers_reply_t * | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_swap_buffers_reply_t * | |
| | | xcb_dri2_swap_buffers_reply (xcb_connection_t *c /**< */, | |
| | | xcb_dri2_swap_buffers_cookie_t cookie /**< | |
| | | */, | |
| | | xcb_generic_error_t **e /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_get_msc_cookie_t xcb_dri2_get_msc | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @returns xcb_dri2_get_msc_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_get_msc_cookie_t | |
| | | xcb_dri2_get_msc (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * placed in the event queue. | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_get_msc_cookie_t xcb_dri2_get_msc_unchecked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @returns xcb_dri2_get_msc_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_get_msc_cookie_t | |
| | | xcb_dri2_get_msc_unchecked (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */); | |
| | | | |
| | | /** | |
| | | * Return the reply | |
| | | * @param c The connection | |
| | | * @param cookie The cookie | |
| | | * @param e The xcb_generic_error_t supplied | |
| | | * | |
| | | * Returns the reply of the request asked by | |
| | | * | |
| | | * The parameter @p e supplied to this function must be NULL if | |
| | | * xcb_dri2_get_msc_unchecked(). is used. | |
| | | * Otherwise, it stores the error if any. | |
| | | * | |
| | | * The returned value must be freed by the caller using free(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_get_msc_reply_t * xcb_dri2_get_msc_reply | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_dri2_get_msc_cookie_t cookie | |
| | | ** @param xcb_generic_error_t **e | |
| | | ** @returns xcb_dri2_get_msc_reply_t * | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_get_msc_reply_t * | |
| | | xcb_dri2_get_msc_reply (xcb_connection_t *c /**< */, | |
| | | xcb_dri2_get_msc_cookie_t cookie /**< */, | |
| | | xcb_generic_error_t **e /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_wait_msc_cookie_t xcb_dri2_wait_msc | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t target_msc_hi | |
| | | ** @param uint32_t target_msc_lo | |
| | | ** @param uint32_t divisor_hi | |
| | | ** @param uint32_t divisor_lo | |
| | | ** @param uint32_t remainder_hi | |
| | | ** @param uint32_t remainder_lo | |
| | | ** @returns xcb_dri2_wait_msc_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_wait_msc_cookie_t | |
| | | xcb_dri2_wait_msc (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t target_msc_hi /**< */, | |
| | | uint32_t target_msc_lo /**< */, | |
| | | uint32_t divisor_hi /**< */, | |
| | | uint32_t divisor_lo /**< */, | |
| | | uint32_t remainder_hi /**< */, | |
| | | uint32_t remainder_lo /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * placed in the event queue. | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_wait_msc_cookie_t xcb_dri2_wait_msc_unchecked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t target_msc_hi | |
| | | ** @param uint32_t target_msc_lo | |
| | | ** @param uint32_t divisor_hi | |
| | | ** @param uint32_t divisor_lo | |
| | | ** @param uint32_t remainder_hi | |
| | | ** @param uint32_t remainder_lo | |
| | | ** @returns xcb_dri2_wait_msc_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_wait_msc_cookie_t | |
| | | xcb_dri2_wait_msc_unchecked (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t target_msc_hi /**< */, | |
| | | uint32_t target_msc_lo /**< */, | |
| | | uint32_t divisor_hi /**< */, | |
| | | uint32_t divisor_lo /**< */, | |
| | | uint32_t remainder_hi /**< */, | |
| | | uint32_t remainder_lo /**< */); | |
| | | | |
| | | /** | |
| | | * Return the reply | |
| | | * @param c The connection | |
| | | * @param cookie The cookie | |
| | | * @param e The xcb_generic_error_t supplied | |
| | | * | |
| | | * Returns the reply of the request asked by | |
| | | * | |
| | | * The parameter @p e supplied to this function must be NULL if | |
| | | * xcb_dri2_wait_msc_unchecked(). is used. | |
| | | * Otherwise, it stores the error if any. | |
| | | * | |
| | | * The returned value must be freed by the caller using free(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_wait_msc_reply_t * xcb_dri2_wait_msc_reply | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_dri2_wait_msc_cookie_t cookie | |
| | | ** @param xcb_generic_error_t **e | |
| | | ** @returns xcb_dri2_wait_msc_reply_t * | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_wait_msc_reply_t * | |
| | | xcb_dri2_wait_msc_reply (xcb_connection_t *c /**< */, | |
| | | xcb_dri2_wait_msc_cookie_t cookie /**< */, | |
| | | xcb_generic_error_t **e /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_wait_sbc_cookie_t xcb_dri2_wait_sbc | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t target_sbc_hi | |
| | | ** @param uint32_t target_sbc_lo | |
| | | ** @returns xcb_dri2_wait_sbc_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_wait_sbc_cookie_t | |
| | | xcb_dri2_wait_sbc (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t target_sbc_hi /**< */, | |
| | | uint32_t target_sbc_lo /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * placed in the event queue. | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_wait_sbc_cookie_t xcb_dri2_wait_sbc_unchecked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t target_sbc_hi | |
| | | ** @param uint32_t target_sbc_lo | |
| | | ** @returns xcb_dri2_wait_sbc_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_wait_sbc_cookie_t | |
| | | xcb_dri2_wait_sbc_unchecked (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t target_sbc_hi /**< */, | |
| | | uint32_t target_sbc_lo /**< */); | |
| | | | |
| | | /** | |
| | | * Return the reply | |
| | | * @param c The connection | |
| | | * @param cookie The cookie | |
| | | * @param e The xcb_generic_error_t supplied | |
| | | * | |
| | | * Returns the reply of the request asked by | |
| | | * | |
| | | * The parameter @p e supplied to this function must be NULL if | |
| | | * xcb_dri2_wait_sbc_unchecked(). is used. | |
| | | * Otherwise, it stores the error if any. | |
| | | * | |
| | | * The returned value must be freed by the caller using free(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_dri2_wait_sbc_reply_t * xcb_dri2_wait_sbc_reply | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_dri2_wait_sbc_cookie_t cookie | |
| | | ** @param xcb_generic_error_t **e | |
| | | ** @returns xcb_dri2_wait_sbc_reply_t * | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_dri2_wait_sbc_reply_t * | |
| | | xcb_dri2_wait_sbc_reply (xcb_connection_t *c /**< */, | |
| | | xcb_dri2_wait_sbc_cookie_t cookie /**< */, | |
| | | xcb_generic_error_t **e /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_dri2_swap_interval_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t interval | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_dri2_swap_interval_checked (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t interval /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_dri2_swap_interval | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param uint32_t interval | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_dri2_swap_interval (xcb_connection_t *c /**< */, | |
| | | xcb_drawable_t drawable /**< */, | |
| | | uint32_t interval /**< */); | |
| | | | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| } | | } | |
| #endif | | #endif | |
| | | | |
| #endif | | #endif | |
| | | | |
| /** | | /** | |
| * @} | | * @} | |
| */ | | */ | |
| | | | |
End of changes. 10 change blocks. |
| 3 lines changed or deleted | | 727 lines changed or added | |
|
| glx.h | | glx.h | |
| | | | |
| skipping to change at line 218 | | skipping to change at line 218 | |
| /** Opcode for xcb_glx_bad_current_drawable. */ | | /** Opcode for xcb_glx_bad_current_drawable. */ | |
| #define XCB_GLX_BAD_CURRENT_DRAWABLE 11 | | #define XCB_GLX_BAD_CURRENT_DRAWABLE 11 | |
| | | | |
| typedef xcb_glx_generic_error_t xcb_glx_bad_current_drawable_error_t; | | typedef xcb_glx_generic_error_t xcb_glx_bad_current_drawable_error_t; | |
| | | | |
| /** Opcode for xcb_glx_bad_window. */ | | /** Opcode for xcb_glx_bad_window. */ | |
| #define XCB_GLX_BAD_WINDOW 12 | | #define XCB_GLX_BAD_WINDOW 12 | |
| | | | |
| typedef xcb_glx_generic_error_t xcb_glx_bad_window_error_t; | | typedef xcb_glx_generic_error_t xcb_glx_bad_window_error_t; | |
| | | | |
|
| | | /** Opcode for xcb_glx_glx_bad_profile_arb. */ | |
| | | #define XCB_GLX_GLX_BAD_PROFILE_ARB 13 | |
| | | | |
| | | typedef xcb_glx_generic_error_t xcb_glx_glx_bad_profile_arb_error_t; | |
| | | | |
| /** Opcode for xcb_glx_pbuffer_clobber. */ | | /** Opcode for xcb_glx_pbuffer_clobber. */ | |
| #define XCB_GLX_PBUFFER_CLOBBER 0 | | #define XCB_GLX_PBUFFER_CLOBBER 0 | |
| | | | |
| /** | | /** | |
| * @brief xcb_glx_pbuffer_clobber_event_t | | * @brief xcb_glx_pbuffer_clobber_event_t | |
| **/ | | **/ | |
| typedef struct xcb_glx_pbuffer_clobber_event_t { | | typedef struct xcb_glx_pbuffer_clobber_event_t { | |
| uint8_t response_type; /**< */ | | uint8_t response_type; /**< */ | |
| uint8_t pad0; /**< */ | | uint8_t pad0; /**< */ | |
| uint16_t sequence; /**< */ | | uint16_t sequence; /**< */ | |
| | | | |
| skipping to change at line 739 | | skipping to change at line 744 | |
| uint8_t pad1[16]; /**< */ | | uint8_t pad1[16]; /**< */ | |
| } xcb_glx_get_fb_configs_reply_t; | | } xcb_glx_get_fb_configs_reply_t; | |
| | | | |
| /** Opcode for xcb_glx_create_pixmap. */ | | /** Opcode for xcb_glx_create_pixmap. */ | |
| #define XCB_GLX_CREATE_PIXMAP 22 | | #define XCB_GLX_CREATE_PIXMAP 22 | |
| | | | |
| /** | | /** | |
| * @brief xcb_glx_create_pixmap_request_t | | * @brief xcb_glx_create_pixmap_request_t | |
| **/ | | **/ | |
| typedef struct xcb_glx_create_pixmap_request_t { | | typedef struct xcb_glx_create_pixmap_request_t { | |
|
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| uint8_t minor_opcode; /**< */ | | uint8_t minor_opcode; /**< */ | |
| uint16_t length; /**< */ | | uint16_t length; /**< */ | |
| uint32_t screen; /**< */ | | uint32_t screen; /**< */ | |
| uint32_t fbconfig; /**< */ | | xcb_glx_fbconfig_t fbconfig; /**< */ | |
| xcb_pixmap_t pixmap; /**< */ | | xcb_pixmap_t pixmap; /**< */ | |
| xcb_glx_pixmap_t glx_pixmap; /**< */ | | xcb_glx_pixmap_t glx_pixmap; /**< */ | |
| uint32_t num_attribs; /**< */ | | uint32_t num_attribs; /**< */ | |
| } xcb_glx_create_pixmap_request_t; | | } xcb_glx_create_pixmap_request_t; | |
| | | | |
| /** Opcode for xcb_glx_destroy_pixmap. */ | | /** Opcode for xcb_glx_destroy_pixmap. */ | |
| #define XCB_GLX_DESTROY_PIXMAP 23 | | #define XCB_GLX_DESTROY_PIXMAP 23 | |
| | | | |
| /** | | /** | |
| * @brief xcb_glx_destroy_pixmap_request_t | | * @brief xcb_glx_destroy_pixmap_request_t | |
| **/ | | **/ | |
| typedef struct xcb_glx_destroy_pixmap_request_t { | | typedef struct xcb_glx_destroy_pixmap_request_t { | |
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| | | | |
| skipping to change at line 769 | | skipping to change at line 774 | |
| xcb_glx_pixmap_t glx_pixmap; /**< */ | | xcb_glx_pixmap_t glx_pixmap; /**< */ | |
| } xcb_glx_destroy_pixmap_request_t; | | } xcb_glx_destroy_pixmap_request_t; | |
| | | | |
| /** Opcode for xcb_glx_create_new_context. */ | | /** Opcode for xcb_glx_create_new_context. */ | |
| #define XCB_GLX_CREATE_NEW_CONTEXT 24 | | #define XCB_GLX_CREATE_NEW_CONTEXT 24 | |
| | | | |
| /** | | /** | |
| * @brief xcb_glx_create_new_context_request_t | | * @brief xcb_glx_create_new_context_request_t | |
| **/ | | **/ | |
| typedef struct xcb_glx_create_new_context_request_t { | | typedef struct xcb_glx_create_new_context_request_t { | |
|
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| uint8_t minor_opcode; /**< */ | | uint8_t minor_opcode; /**< */ | |
| uint16_t length; /**< */ | | uint16_t length; /**< */ | |
| xcb_glx_context_t context; /**< */ | | xcb_glx_context_t context; /**< */ | |
| uint32_t fbconfig; /**< */ | | xcb_glx_fbconfig_t fbconfig; /**< */ | |
| uint32_t screen; /**< */ | | uint32_t screen; /**< */ | |
| uint32_t render_type; /**< */ | | uint32_t render_type; /**< */ | |
| uint32_t share_list; /**< */ | | xcb_glx_context_t share_list; /**< */ | |
| uint8_t is_direct; /**< */ | | uint8_t is_direct; /**< */ | |
| uint8_t reserved1; /**< */ | | uint8_t pad0[3]; /**< */ | |
| uint16_t reserved2; /**< */ | | | |
| } xcb_glx_create_new_context_request_t; | | } xcb_glx_create_new_context_request_t; | |
| | | | |
| /** | | /** | |
| * @brief xcb_glx_query_context_cookie_t | | * @brief xcb_glx_query_context_cookie_t | |
| **/ | | **/ | |
| typedef struct xcb_glx_query_context_cookie_t { | | typedef struct xcb_glx_query_context_cookie_t { | |
| unsigned int sequence; /**< */ | | unsigned int sequence; /**< */ | |
| } xcb_glx_query_context_cookie_t; | | } xcb_glx_query_context_cookie_t; | |
| | | | |
| /** Opcode for xcb_glx_query_context. */ | | /** Opcode for xcb_glx_query_context. */ | |
| | | | |
| skipping to change at line 954 | | skipping to change at line 958 | |
| /** | | /** | |
| * @brief xcb_glx_delete_window_request_t | | * @brief xcb_glx_delete_window_request_t | |
| **/ | | **/ | |
| typedef struct xcb_glx_delete_window_request_t { | | typedef struct xcb_glx_delete_window_request_t { | |
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| uint8_t minor_opcode; /**< */ | | uint8_t minor_opcode; /**< */ | |
| uint16_t length; /**< */ | | uint16_t length; /**< */ | |
| xcb_glx_window_t glxwindow; /**< */ | | xcb_glx_window_t glxwindow; /**< */ | |
| } xcb_glx_delete_window_request_t; | | } xcb_glx_delete_window_request_t; | |
| | | | |
|
| | | /** Opcode for xcb_glx_set_client_info_arb. */ | |
| | | #define XCB_GLX_SET_CLIENT_INFO_ARB 33 | |
| | | | |
| | | /** | |
| | | * @brief xcb_glx_set_client_info_arb_request_t | |
| | | **/ | |
| | | typedef struct xcb_glx_set_client_info_arb_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | uint32_t major_version; /**< */ | |
| | | uint32_t minor_version; /**< */ | |
| | | uint32_t num_versions; /**< */ | |
| | | uint32_t gl_str_len; /**< */ | |
| | | uint32_t glx_str_len; /**< */ | |
| | | } xcb_glx_set_client_info_arb_request_t; | |
| | | | |
| | | /** Opcode for xcb_glx_create_context_attribs_arb. */ | |
| | | #define XCB_GLX_CREATE_CONTEXT_ATTRIBS_ARB 34 | |
| | | | |
| | | /** | |
| | | * @brief xcb_glx_create_context_attribs_arb_request_t | |
| | | **/ | |
| | | typedef struct xcb_glx_create_context_attribs_arb_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | xcb_glx_context_t context; /**< */ | |
| | | xcb_glx_fbconfig_t fbconfig; /**< */ | |
| | | uint32_t screen; /**< */ | |
| | | xcb_glx_context_t share_list; /**< */ | |
| | | uint8_t is_direct; /**< */ | |
| | | uint8_t pad0[3]; /**< */ | |
| | | uint32_t num_attribs; /**< */ | |
| | | } xcb_glx_create_context_attribs_arb_request_t; | |
| | | | |
| | | /** Opcode for xcb_glx_set_client_info_2arb. */ | |
| | | #define XCB_GLX_SET_CLIENT_INFO_2ARB 35 | |
| | | | |
| | | /** | |
| | | * @brief xcb_glx_set_client_info_2arb_request_t | |
| | | **/ | |
| | | typedef struct xcb_glx_set_client_info_2arb_request_t { | |
| | | uint8_t major_opcode; /**< */ | |
| | | uint8_t minor_opcode; /**< */ | |
| | | uint16_t length; /**< */ | |
| | | uint32_t major_version; /**< */ | |
| | | uint32_t minor_version; /**< */ | |
| | | uint32_t num_versions; /**< */ | |
| | | uint32_t gl_str_len; /**< */ | |
| | | uint32_t glx_str_len; /**< */ | |
| | | } xcb_glx_set_client_info_2arb_request_t; | |
| | | | |
| /** Opcode for xcb_glx_new_list. */ | | /** Opcode for xcb_glx_new_list. */ | |
| #define XCB_GLX_NEW_LIST 101 | | #define XCB_GLX_NEW_LIST 101 | |
| | | | |
| /** | | /** | |
| * @brief xcb_glx_new_list_request_t | | * @brief xcb_glx_new_list_request_t | |
| **/ | | **/ | |
| typedef struct xcb_glx_new_list_request_t { | | typedef struct xcb_glx_new_list_request_t { | |
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| uint8_t minor_opcode; /**< */ | | uint8_t minor_opcode; /**< */ | |
| uint16_t length; /**< */ | | uint16_t length; /**< */ | |
| | | | |
| skipping to change at line 3472 | | skipping to change at line 3529 | |
| ** xcb_generic_iterator_t xcb_glx_context_tag_end | | ** xcb_generic_iterator_t xcb_glx_context_tag_end | |
| ** | | ** | |
| ** @param xcb_glx_context_tag_iterator_t i | | ** @param xcb_glx_context_tag_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_glx_context_tag_end (xcb_glx_context_tag_iterator_t i /**< */); | | xcb_glx_context_tag_end (xcb_glx_context_tag_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_render_sizeof (const void *_buffer /**< */, | |
| | | uint32_t data_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3529 | | skipping to change at line 3590 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_render (xcb_connection_t *c /**< */, | | xcb_glx_render (xcb_connection_t *c /**< */, | |
| xcb_glx_context_tag_t context_tag /**< */, | | xcb_glx_context_tag_t context_tag /**< */, | |
| uint32_t data_len /**< */, | | uint32_t data_len /**< */, | |
| const uint8_t *data /**< */); | | const uint8_t *data /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_render_large_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4298 | | skipping to change at line 4362 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_create_glx_pixmap (xcb_connection_t *c /**< */, | | xcb_glx_create_glx_pixmap (xcb_connection_t *c /**< */, | |
| uint32_t screen /**< */, | | uint32_t screen /**< */, | |
| xcb_visualid_t visual /**< */, | | xcb_visualid_t visual /**< */, | |
| xcb_pixmap_t pixmap /**< */, | | xcb_pixmap_t pixmap /**< */, | |
| xcb_glx_pixmap_t glx_pixmap /**< */); | | xcb_glx_pixmap_t glx_pixmap /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_visual_configs_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 4463 | | skipping to change at line 4530 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_glx_pixmap_t glx_pixmap | | ** @param xcb_glx_pixmap_t glx_pixmap | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_destroy_glx_pixmap (xcb_connection_t *c /**< */, | | xcb_glx_destroy_glx_pixmap (xcb_connection_t *c /**< */, | |
| xcb_glx_pixmap_t glx_pixmap /**< */); | | xcb_glx_pixmap_t glx_pixmap /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_vendor_private_sizeof (const void *_buffer /**< */, | |
| | | uint32_t data_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4524 | | skipping to change at line 4595 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_vendor_private (xcb_connection_t *c /**< */, | | xcb_glx_vendor_private (xcb_connection_t *c /**< */, | |
| uint32_t vendor_code /**< */, | | uint32_t vendor_code /**< */, | |
| xcb_glx_context_tag_t context_tag /**< */, | | xcb_glx_context_tag_t context_tag /**< */, | |
| uint32_t data_len /**< */, | | uint32_t data_len /**< */, | |
| const uint8_t *data /**< */); | | const uint8_t *data /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_vendor_private_with_reply_sizeof (const void *_buffer /**< */, | |
| | | uint32_t data_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 4732 | | skipping to change at line 4807 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_query_extensions_string_reply_t * | | ** @returns xcb_glx_query_extensions_string_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_query_extensions_string_reply_t * | | xcb_glx_query_extensions_string_reply_t * | |
| xcb_glx_query_extensions_string_reply (xcb_connection_t
*c /**< */, | | xcb_glx_query_extensions_string_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_query_extensions_string_cook
ie_t cookie /**< */, | | xcb_glx_query_extensions_string_cook
ie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_query_server_string_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 4852 | | skipping to change at line 4930 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_query_server_string_reply_t * | | ** @returns xcb_glx_query_server_string_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_query_server_string_reply_t * | | xcb_glx_query_server_string_reply_t * | |
| xcb_glx_query_server_string_reply (xcb_connection_t *c
/**< */, | | xcb_glx_query_server_string_reply (xcb_connection_t *c
/**< */, | |
| xcb_glx_query_server_string_cookie_t c
ookie /**< */, | | xcb_glx_query_server_string_cookie_t c
ookie /**< */, | |
| xcb_generic_error_t **e
/**< */); | | xcb_generic_error_t **e
/**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_client_info_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4913 | | skipping to change at line 4994 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_client_info (xcb_connection_t *c /**< */, | | xcb_glx_client_info (xcb_connection_t *c /**< */, | |
| uint32_t major_version /**< */, | | uint32_t major_version /**< */, | |
| uint32_t minor_version /**< */, | | uint32_t minor_version /**< */, | |
| uint32_t str_len /**< */, | | uint32_t str_len /**< */, | |
| const char *string /**< */); | | const char *string /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_fb_configs_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 5029 | | skipping to change at line 5113 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_fb_configs_reply_t * | | ** @returns xcb_glx_get_fb_configs_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_fb_configs_reply_t * | | xcb_glx_get_fb_configs_reply_t * | |
| xcb_glx_get_fb_configs_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_fb_configs_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_fb_configs_cookie_t cookie /**
< */, | | xcb_glx_get_fb_configs_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_glx_create_pixmap_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_glx_create_pixmap_checked | | ** xcb_void_cookie_t xcb_glx_create_pixmap_checked | |
| ** | | ** | |
|
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint32_t screen | | ** @param uint32_t screen | |
| ** @param uint32_t fbconfig | | ** @param xcb_glx_fbconfig_t fbconfig | |
| ** @param xcb_pixmap_t pixmap | | ** @param xcb_pixmap_t pixmap | |
| ** @param xcb_glx_pixmap_t glx_pixmap | | ** @param xcb_glx_pixmap_t glx_pixmap | |
| ** @param uint32_t num_attribs | | ** @param uint32_t num_attribs | |
| ** @param const uint32_t *attribs | | ** @param const uint32_t *attribs | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
|
| xcb_glx_create_pixmap_checked (xcb_connection_t *c /**< */, | | xcb_glx_create_pixmap_checked (xcb_connection_t *c /**< */, | |
| uint32_t screen /**< */, | | uint32_t screen /**< */, | |
| uint32_t fbconfig /**< */, | | xcb_glx_fbconfig_t fbconfig /**< */, | |
| xcb_pixmap_t pixmap /**< */, | | xcb_pixmap_t pixmap /**< */, | |
| xcb_glx_pixmap_t glx_pixmap /**< */, | | xcb_glx_pixmap_t glx_pixmap /**< */, | |
| uint32_t num_attribs /**< */, | | uint32_t num_attribs /**< */, | |
| const uint32_t *attribs /**< */); | | const uint32_t *attribs /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_glx_create_pixmap | | ** xcb_void_cookie_t xcb_glx_create_pixmap | |
| ** | | ** | |
|
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint32_t screen | | ** @param uint32_t screen | |
| ** @param uint32_t fbconfig | | ** @param xcb_glx_fbconfig_t fbconfig | |
| ** @param xcb_pixmap_t pixmap | | ** @param xcb_pixmap_t pixmap | |
| ** @param xcb_glx_pixmap_t glx_pixmap | | ** @param xcb_glx_pixmap_t glx_pixmap | |
| ** @param uint32_t num_attribs | | ** @param uint32_t num_attribs | |
| ** @param const uint32_t *attribs | | ** @param const uint32_t *attribs | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
|
| xcb_glx_create_pixmap (xcb_connection_t *c /**< */, | | xcb_glx_create_pixmap (xcb_connection_t *c /**< */, | |
| uint32_t screen /**< */, | | uint32_t screen /**< */, | |
| uint32_t fbconfig /**< */, | | xcb_glx_fbconfig_t fbconfig /**< */, | |
| xcb_pixmap_t pixmap /**< */, | | xcb_pixmap_t pixmap /**< */, | |
| xcb_glx_pixmap_t glx_pixmap /**< */, | | xcb_glx_pixmap_t glx_pixmap /**< */, | |
| uint32_t num_attribs /**< */, | | uint32_t num_attribs /**< */, | |
| const uint32_t *attribs /**< */); | | const uint32_t *attribs /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| | | | |
| skipping to change at line 5163 | | skipping to change at line 5250 | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_glx_create_new_context_checked | | ** xcb_void_cookie_t xcb_glx_create_new_context_checked | |
| ** | | ** | |
|
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_glx_context_t context | | ** @param xcb_glx_context_t context | |
| ** @param uint32_t fbconfig | | ** @param xcb_glx_fbconfig_t fbconfig | |
| ** @param uint32_t screen | | ** @param uint32_t screen | |
| ** @param uint32_t render_type | | ** @param uint32_t render_type | |
| ** @param uint32_t share_list | | ** @param xcb_glx_context_t share_list | |
| ** @param uint8_t is_direct | | ** @param uint8_t is_direct | |
| ** @param uint8_t reserved1 | | | |
| ** @param uint16_t reserved2 | | | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
|
| xcb_glx_create_new_context_checked (xcb_connection_t *c /**< */, | | xcb_glx_create_new_context_checked (xcb_connection_t *c /**< */, | |
| xcb_glx_context_t context /**< */, | | xcb_glx_context_t context /**< */, | |
| uint32_t fbconfig /**< */, | | xcb_glx_fbconfig_t fbconfig /**< */, | |
| uint32_t screen /**< */, | | uint32_t screen /**< */, | |
| uint32_t render_type /**< */ | | uint32_t render_type /**< * | |
| , | | /, | |
| uint32_t share_list /**< */, | | xcb_glx_context_t share_list /**< */ | |
| uint8_t is_direct /**< */, | | , | |
| uint8_t reserved1 /**< */, | | uint8_t is_direct /**< */) | |
| uint16_t reserved2 /**< */); | | ; | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_glx_create_new_context | | ** xcb_void_cookie_t xcb_glx_create_new_context | |
| ** | | ** | |
|
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_glx_context_t context | | ** @param xcb_glx_context_t context | |
| ** @param uint32_t fbconfig | | ** @param xcb_glx_fbconfig_t fbconfig | |
| ** @param uint32_t screen | | ** @param uint32_t screen | |
| ** @param uint32_t render_type | | ** @param uint32_t render_type | |
| ** @param uint32_t share_list | | ** @param xcb_glx_context_t share_list | |
| ** @param uint8_t is_direct | | ** @param uint8_t is_direct | |
| ** @param uint8_t reserved1 | | | |
| ** @param uint16_t reserved2 | | | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
|
| xcb_glx_create_new_context (xcb_connection_t *c /**< */, | | xcb_glx_create_new_context (xcb_connection_t *c /**< */, | |
| xcb_glx_context_t context /**< */, | | xcb_glx_context_t context /**< */, | |
| uint32_t fbconfig /**< */, | | xcb_glx_fbconfig_t fbconfig /**< */, | |
| uint32_t screen /**< */, | | uint32_t screen /**< */, | |
| uint32_t render_type /**< */, | | uint32_t render_type /**< */, | |
| uint32_t share_list /**< */, | | xcb_glx_context_t share_list /**< */, | |
| uint8_t is_direct /**< */, | | uint8_t is_direct /**< */); | |
| uint8_t reserved1 /**< */, | | | |
| uint16_t reserved2 /**< */); | | int | |
| | | xcb_glx_query_context_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| | | | |
| skipping to change at line 5432 | | skipping to change at line 5514 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_make_context_current_reply_t * | | ** @returns xcb_glx_make_context_current_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_make_context_current_reply_t * | | xcb_glx_make_context_current_reply_t * | |
| xcb_glx_make_context_current_reply (xcb_connection_t
*c /**< */, | | xcb_glx_make_context_current_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_make_context_current_cookie_t
cookie /**< */, | | xcb_glx_make_context_current_cookie_t
cookie /**< */, | |
| xcb_generic_error_t *
*e /**< */); | | xcb_generic_error_t *
*e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_create_pbuffer_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 5546 | | skipping to change at line 5631 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_glx_pbuffer_t pbuffer | | ** @param xcb_glx_pbuffer_t pbuffer | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_destroy_pbuffer (xcb_connection_t *c /**< */, | | xcb_glx_destroy_pbuffer (xcb_connection_t *c /**< */, | |
| xcb_glx_pbuffer_t pbuffer /**< */); | | xcb_glx_pbuffer_t pbuffer /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_drawable_attributes_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 5662 | | skipping to change at line 5750 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_drawable_attributes_reply_t * | | ** @returns xcb_glx_get_drawable_attributes_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_drawable_attributes_reply_t * | | xcb_glx_get_drawable_attributes_reply_t * | |
| xcb_glx_get_drawable_attributes_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_drawable_attributes_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_drawable_attributes_cook
ie_t cookie /**< */, | | xcb_glx_get_drawable_attributes_cook
ie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_change_drawable_attributes_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 5719 | | skipping to change at line 5810 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_change_drawable_attributes (xcb_connection_t *c /**< */, | | xcb_glx_change_drawable_attributes (xcb_connection_t *c /**< */, | |
| xcb_glx_drawable_t drawable /**< */, | | xcb_glx_drawable_t drawable /**< */, | |
| uint32_t num_attribs /**< *
/, | | uint32_t num_attribs /**< *
/, | |
| const uint32_t *attribs /**< */); | | const uint32_t *attribs /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_create_window_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 5837 | | skipping to change at line 5931 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_glx_window_t glxwindow | | ** @param xcb_glx_window_t glxwindow | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_delete_window (xcb_connection_t *c /**< */, | | xcb_glx_delete_window (xcb_connection_t *c /**< */, | |
| xcb_glx_window_t glxwindow /**< */); | | xcb_glx_window_t glxwindow /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_set_client_info_arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_glx_set_client_info_arb_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param uint32_t major_version | |
| | | ** @param uint32_t minor_version | |
| | | ** @param uint32_t num_versions | |
| | | ** @param uint32_t gl_str_len | |
| | | ** @param uint32_t glx_str_len | |
| | | ** @param const uint32_t *gl_versions | |
| | | ** @param const char *gl_extension_string | |
| | | ** @param const char *glx_extension_string | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_glx_set_client_info_arb_checked (xcb_connection_t *c /**< */, | |
| | | uint32_t major_version /**< | |
| | | */, | |
| | | uint32_t minor_version /**< | |
| | | */, | |
| | | uint32_t num_versions /**< * | |
| | | /, | |
| | | uint32_t gl_str_len /**< */, | |
| | | uint32_t glx_str_len /**< */ | |
| | | , | |
| | | const uint32_t *gl_versions /**< */ | |
| | | , | |
| | | const char *gl_extension_string | |
| | | /**< */, | |
| | | const char *glx_extension_string | |
| | | /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_glx_set_client_info_arb | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param uint32_t major_version | |
| | | ** @param uint32_t minor_version | |
| | | ** @param uint32_t num_versions | |
| | | ** @param uint32_t gl_str_len | |
| | | ** @param uint32_t glx_str_len | |
| | | ** @param const uint32_t *gl_versions | |
| | | ** @param const char *gl_extension_string | |
| | | ** @param const char *glx_extension_string | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_glx_set_client_info_arb (xcb_connection_t *c /**< */, | |
| | | uint32_t major_version /**< */, | |
| | | uint32_t minor_version /**< */, | |
| | | uint32_t num_versions /**< */, | |
| | | uint32_t gl_str_len /**< */, | |
| | | uint32_t glx_str_len /**< */, | |
| | | const uint32_t *gl_versions /**< */, | |
| | | const char *gl_extension_string /**< */ | |
| | | , | |
| | | const char *glx_extension_string /**< * | |
| | | /); | |
| | | | |
| | | int | |
| | | xcb_glx_create_context_attribs_arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_glx_create_context_attribs_arb_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_glx_context_t context | |
| | | ** @param xcb_glx_fbconfig_t fbconfig | |
| | | ** @param uint32_t screen | |
| | | ** @param xcb_glx_context_t share_list | |
| | | ** @param uint8_t is_direct | |
| | | ** @param uint32_t num_attribs | |
| | | ** @param const uint32_t *attribs | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_glx_create_context_attribs_arb_checked (xcb_connection_t *c /**< */, | |
| | | xcb_glx_context_t context /* | |
| | | *< */, | |
| | | xcb_glx_fbconfig_t fbconfig / | |
| | | **< */, | |
| | | uint32_t screen /** | |
| | | < */, | |
| | | xcb_glx_context_t share_list | |
| | | /**< */, | |
| | | uint8_t is_direct | |
| | | /**< */, | |
| | | uint32_t num_attribs | |
| | | /**< */, | |
| | | const uint32_t *attribs /* | |
| | | *< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_glx_create_context_attribs_arb | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_glx_context_t context | |
| | | ** @param xcb_glx_fbconfig_t fbconfig | |
| | | ** @param uint32_t screen | |
| | | ** @param xcb_glx_context_t share_list | |
| | | ** @param uint8_t is_direct | |
| | | ** @param uint32_t num_attribs | |
| | | ** @param const uint32_t *attribs | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_glx_create_context_attribs_arb (xcb_connection_t *c /**< */, | |
| | | xcb_glx_context_t context /**< */, | |
| | | xcb_glx_fbconfig_t fbconfig /**< */, | |
| | | uint32_t screen /**< */, | |
| | | xcb_glx_context_t share_list /**< */ | |
| | | , | |
| | | uint8_t is_direct /**< */, | |
| | | uint32_t num_attribs /**< * | |
| | | /, | |
| | | const uint32_t *attribs /**< */); | |
| | | | |
| | | int | |
| | | xcb_glx_set_client_info_2arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_glx_set_client_info_2arb_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param uint32_t major_version | |
| | | ** @param uint32_t minor_version | |
| | | ** @param uint32_t num_versions | |
| | | ** @param uint32_t gl_str_len | |
| | | ** @param uint32_t glx_str_len | |
| | | ** @param const uint32_t *gl_versions | |
| | | ** @param const char *gl_extension_string | |
| | | ** @param const char *glx_extension_string | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_glx_set_client_info_2arb_checked (xcb_connection_t *c /**< */, | |
| | | uint32_t major_version /**< | |
| | | */, | |
| | | uint32_t minor_version /**< | |
| | | */, | |
| | | uint32_t num_versions /**< | |
| | | */, | |
| | | uint32_t gl_str_len /**< */ | |
| | | , | |
| | | uint32_t glx_str_len /**< * | |
| | | /, | |
| | | const uint32_t *gl_versions /**< * | |
| | | /, | |
| | | const char *gl_extension_string | |
| | | /**< */, | |
| | | const char *glx_extension_strin | |
| | | g /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_glx_set_client_info_2arb | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param uint32_t major_version | |
| | | ** @param uint32_t minor_version | |
| | | ** @param uint32_t num_versions | |
| | | ** @param uint32_t gl_str_len | |
| | | ** @param uint32_t glx_str_len | |
| | | ** @param const uint32_t *gl_versions | |
| | | ** @param const char *gl_extension_string | |
| | | ** @param const char *glx_extension_string | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_glx_set_client_info_2arb (xcb_connection_t *c /**< */, | |
| | | uint32_t major_version /**< */, | |
| | | uint32_t minor_version /**< */, | |
| | | uint32_t num_versions /**< */, | |
| | | uint32_t gl_str_len /**< */, | |
| | | uint32_t glx_str_len /**< */, | |
| | | const uint32_t *gl_versions /**< */, | |
| | | const char *gl_extension_string /**< * | |
| | | /, | |
| | | const char *glx_extension_string /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 6194 | | skipping to change at line 6524 | |
| ** @param int32_t size | | ** @param int32_t size | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_select_buffer (xcb_connection_t *c /**< */, | | xcb_glx_select_buffer (xcb_connection_t *c /**< */, | |
| xcb_glx_context_tag_t context_tag /**< */, | | xcb_glx_context_tag_t context_tag /**< */, | |
| int32_t size /**< */); | | int32_t size /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_render_mode_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 6508 | | skipping to change at line 6841 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_pixel_storei (xcb_connection_t *c /**< */, | | xcb_glx_pixel_storei (xcb_connection_t *c /**< */, | |
| xcb_glx_context_tag_t context_tag /**< */, | | xcb_glx_context_tag_t context_tag /**< */, | |
| uint32_t pname /**< */, | | uint32_t pname /**< */, | |
| int32_t datum /**< */); | | int32_t datum /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_read_pixels_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 6656 | | skipping to change at line 6992 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_read_pixels_reply_t * | | ** @returns xcb_glx_read_pixels_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_read_pixels_reply_t * | | xcb_glx_read_pixels_reply_t * | |
| xcb_glx_read_pixels_reply (xcb_connection_t *c /**< */, | | xcb_glx_read_pixels_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_read_pixels_cookie_t cookie /**< */, | | xcb_glx_read_pixels_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_booleanv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 6776 | | skipping to change at line 7115 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_booleanv_reply_t * | | ** @returns xcb_glx_get_booleanv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_booleanv_reply_t * | | xcb_glx_get_booleanv_reply_t * | |
| xcb_glx_get_booleanv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_booleanv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_booleanv_cookie_t cookie /**< */
, | | xcb_glx_get_booleanv_cookie_t cookie /**< */
, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_clip_plane_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 6896 | | skipping to change at line 7238 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_clip_plane_reply_t * | | ** @returns xcb_glx_get_clip_plane_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_clip_plane_reply_t * | | xcb_glx_get_clip_plane_reply_t * | |
| xcb_glx_get_clip_plane_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_clip_plane_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_clip_plane_cookie_t cookie /**
< */, | | xcb_glx_get_clip_plane_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_doublev_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7096 | | skipping to change at line 7441 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_error_reply_t * | | ** @returns xcb_glx_get_error_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_error_reply_t * | | xcb_glx_get_error_reply_t * | |
| xcb_glx_get_error_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_error_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_error_cookie_t cookie /**< */, | | xcb_glx_get_error_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_floatv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7216 | | skipping to change at line 7564 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_floatv_reply_t * | | ** @returns xcb_glx_get_floatv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_floatv_reply_t * | | xcb_glx_get_floatv_reply_t * | |
| xcb_glx_get_floatv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_floatv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_floatv_cookie_t cookie /**< */, | | xcb_glx_get_floatv_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_integerv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7336 | | skipping to change at line 7687 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_integerv_reply_t * | | ** @returns xcb_glx_get_integerv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_integerv_reply_t * | | xcb_glx_get_integerv_reply_t * | |
| xcb_glx_get_integerv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_integerv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_integerv_cookie_t cookie /**< */
, | | xcb_glx_get_integerv_cookie_t cookie /**< */
, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_lightfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7460 | | skipping to change at line 7814 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_lightfv_reply_t * | | ** @returns xcb_glx_get_lightfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_lightfv_reply_t * | | xcb_glx_get_lightfv_reply_t * | |
| xcb_glx_get_lightfv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_lightfv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_lightfv_cookie_t cookie /**< */, | | xcb_glx_get_lightfv_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_lightiv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7584 | | skipping to change at line 7941 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_lightiv_reply_t * | | ** @returns xcb_glx_get_lightiv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_lightiv_reply_t * | | xcb_glx_get_lightiv_reply_t * | |
| xcb_glx_get_lightiv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_lightiv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_lightiv_cookie_t cookie /**< */, | | xcb_glx_get_lightiv_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_mapdv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7708 | | skipping to change at line 8068 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_mapdv_reply_t * | | ** @returns xcb_glx_get_mapdv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_mapdv_reply_t * | | xcb_glx_get_mapdv_reply_t * | |
| xcb_glx_get_mapdv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_mapdv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_mapdv_cookie_t cookie /**< */, | | xcb_glx_get_mapdv_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_mapfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7832 | | skipping to change at line 8195 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_mapfv_reply_t * | | ** @returns xcb_glx_get_mapfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_mapfv_reply_t * | | xcb_glx_get_mapfv_reply_t * | |
| xcb_glx_get_mapfv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_mapfv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_mapfv_cookie_t cookie /**< */, | | xcb_glx_get_mapfv_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_mapiv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7956 | | skipping to change at line 8322 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_mapiv_reply_t * | | ** @returns xcb_glx_get_mapiv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_mapiv_reply_t * | | xcb_glx_get_mapiv_reply_t * | |
| xcb_glx_get_mapiv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_mapiv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_mapiv_cookie_t cookie /**< */, | | xcb_glx_get_mapiv_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_materialfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8080 | | skipping to change at line 8449 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_materialfv_reply_t * | | ** @returns xcb_glx_get_materialfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_materialfv_reply_t * | | xcb_glx_get_materialfv_reply_t * | |
| xcb_glx_get_materialfv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_materialfv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_materialfv_cookie_t cookie /**
< */, | | xcb_glx_get_materialfv_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_materialiv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8204 | | skipping to change at line 8576 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_materialiv_reply_t * | | ** @returns xcb_glx_get_materialiv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_materialiv_reply_t * | | xcb_glx_get_materialiv_reply_t * | |
| xcb_glx_get_materialiv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_materialiv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_materialiv_cookie_t cookie /**
< */, | | xcb_glx_get_materialiv_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_pixel_mapfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8324 | | skipping to change at line 8699 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_pixel_mapfv_reply_t * | | ** @returns xcb_glx_get_pixel_mapfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_pixel_mapfv_reply_t * | | xcb_glx_get_pixel_mapfv_reply_t * | |
| xcb_glx_get_pixel_mapfv_reply (xcb_connection_t *c /**< *
/, | | xcb_glx_get_pixel_mapfv_reply (xcb_connection_t *c /**< *
/, | |
| xcb_glx_get_pixel_mapfv_cookie_t cookie /
**< */, | | xcb_glx_get_pixel_mapfv_cookie_t cookie /
**< */, | |
| xcb_generic_error_t **e /**< *
/); | | xcb_generic_error_t **e /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_pixel_mapuiv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8444 | | skipping to change at line 8822 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_pixel_mapuiv_reply_t * | | ** @returns xcb_glx_get_pixel_mapuiv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_pixel_mapuiv_reply_t * | | xcb_glx_get_pixel_mapuiv_reply_t * | |
| xcb_glx_get_pixel_mapuiv_reply (xcb_connection_t *c /**<
*/, | | xcb_glx_get_pixel_mapuiv_reply (xcb_connection_t *c /**<
*/, | |
| xcb_glx_get_pixel_mapuiv_cookie_t cookie
/**< */, | | xcb_glx_get_pixel_mapuiv_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_pixel_mapusv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8564 | | skipping to change at line 8945 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_pixel_mapusv_reply_t * | | ** @returns xcb_glx_get_pixel_mapusv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_pixel_mapusv_reply_t * | | xcb_glx_get_pixel_mapusv_reply_t * | |
| xcb_glx_get_pixel_mapusv_reply (xcb_connection_t *c /**<
*/, | | xcb_glx_get_pixel_mapusv_reply (xcb_connection_t *c /**<
*/, | |
| xcb_glx_get_pixel_mapusv_cookie_t cookie
/**< */, | | xcb_glx_get_pixel_mapusv_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_polygon_stipple_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8684 | | skipping to change at line 9068 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_polygon_stipple_reply_t * | | ** @returns xcb_glx_get_polygon_stipple_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_polygon_stipple_reply_t * | | xcb_glx_get_polygon_stipple_reply_t * | |
| xcb_glx_get_polygon_stipple_reply (xcb_connection_t *c
/**< */, | | xcb_glx_get_polygon_stipple_reply (xcb_connection_t *c
/**< */, | |
| xcb_glx_get_polygon_stipple_cookie_t c
ookie /**< */, | | xcb_glx_get_polygon_stipple_cookie_t c
ookie /**< */, | |
| xcb_generic_error_t **e
/**< */); | | xcb_generic_error_t **e
/**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_string_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8804 | | skipping to change at line 9191 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_string_reply_t * | | ** @returns xcb_glx_get_string_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_string_reply_t * | | xcb_glx_get_string_reply_t * | |
| xcb_glx_get_string_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_string_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_string_cookie_t cookie /**< */, | | xcb_glx_get_string_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_envfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8928 | | skipping to change at line 9318 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_envfv_reply_t * | | ** @returns xcb_glx_get_tex_envfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_envfv_reply_t * | | xcb_glx_get_tex_envfv_reply_t * | |
| xcb_glx_get_tex_envfv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_tex_envfv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_tex_envfv_cookie_t cookie /**<
*/, | | xcb_glx_get_tex_envfv_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_enviv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9052 | | skipping to change at line 9445 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_enviv_reply_t * | | ** @returns xcb_glx_get_tex_enviv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_enviv_reply_t * | | xcb_glx_get_tex_enviv_reply_t * | |
| xcb_glx_get_tex_enviv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_tex_enviv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_tex_enviv_cookie_t cookie /**<
*/, | | xcb_glx_get_tex_enviv_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_gendv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9176 | | skipping to change at line 9572 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_gendv_reply_t * | | ** @returns xcb_glx_get_tex_gendv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_gendv_reply_t * | | xcb_glx_get_tex_gendv_reply_t * | |
| xcb_glx_get_tex_gendv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_tex_gendv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_tex_gendv_cookie_t cookie /**<
*/, | | xcb_glx_get_tex_gendv_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_genfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9300 | | skipping to change at line 9699 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_genfv_reply_t * | | ** @returns xcb_glx_get_tex_genfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_genfv_reply_t * | | xcb_glx_get_tex_genfv_reply_t * | |
| xcb_glx_get_tex_genfv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_tex_genfv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_tex_genfv_cookie_t cookie /**<
*/, | | xcb_glx_get_tex_genfv_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_geniv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9424 | | skipping to change at line 9826 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_geniv_reply_t * | | ** @returns xcb_glx_get_tex_geniv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_geniv_reply_t * | | xcb_glx_get_tex_geniv_reply_t * | |
| xcb_glx_get_tex_geniv_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_tex_geniv_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_tex_geniv_cookie_t cookie /**<
*/, | | xcb_glx_get_tex_geniv_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_image_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9560 | | skipping to change at line 9965 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_image_reply_t * | | ** @returns xcb_glx_get_tex_image_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_image_reply_t * | | xcb_glx_get_tex_image_reply_t * | |
| xcb_glx_get_tex_image_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_tex_image_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_tex_image_cookie_t cookie /**<
*/, | | xcb_glx_get_tex_image_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_parameterfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9684 | | skipping to change at line 10092 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_parameterfv_reply_t * | | ** @returns xcb_glx_get_tex_parameterfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_parameterfv_reply_t * | | xcb_glx_get_tex_parameterfv_reply_t * | |
| xcb_glx_get_tex_parameterfv_reply (xcb_connection_t *c
/**< */, | | xcb_glx_get_tex_parameterfv_reply (xcb_connection_t *c
/**< */, | |
| xcb_glx_get_tex_parameterfv_cookie_t c
ookie /**< */, | | xcb_glx_get_tex_parameterfv_cookie_t c
ookie /**< */, | |
| xcb_generic_error_t **e
/**< */); | | xcb_generic_error_t **e
/**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_parameteriv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9808 | | skipping to change at line 10219 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_parameteriv_reply_t * | | ** @returns xcb_glx_get_tex_parameteriv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_parameteriv_reply_t * | | xcb_glx_get_tex_parameteriv_reply_t * | |
| xcb_glx_get_tex_parameteriv_reply (xcb_connection_t *c
/**< */, | | xcb_glx_get_tex_parameteriv_reply (xcb_connection_t *c
/**< */, | |
| xcb_glx_get_tex_parameteriv_cookie_t c
ookie /**< */, | | xcb_glx_get_tex_parameteriv_cookie_t c
ookie /**< */, | |
| xcb_generic_error_t **e
/**< */); | | xcb_generic_error_t **e
/**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_level_parameterfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9936 | | skipping to change at line 10350 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_tex_level_parameterfv_reply_t * | | ** @returns xcb_glx_get_tex_level_parameterfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_tex_level_parameterfv_reply_t * | | xcb_glx_get_tex_level_parameterfv_reply_t * | |
| xcb_glx_get_tex_level_parameterfv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_tex_level_parameterfv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_tex_level_parameterfv_
cookie_t cookie /**< */, | | xcb_glx_get_tex_level_parameterfv_
cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_tex_level_parameteriv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 10197 | | skipping to change at line 10614 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_glx_context_tag_t context_tag | | ** @param xcb_glx_context_tag_t context_tag | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_flush (xcb_connection_t *c /**< */, | | xcb_glx_flush (xcb_connection_t *c /**< */, | |
| xcb_glx_context_tag_t context_tag /**< */); | | xcb_glx_context_tag_t context_tag /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_are_textures_resident_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 10321 | | skipping to change at line 10741 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_are_textures_resident_reply_t * | | ** @returns xcb_glx_are_textures_resident_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_are_textures_resident_reply_t * | | xcb_glx_are_textures_resident_reply_t * | |
| xcb_glx_are_textures_resident_reply (xcb_connection_t
*c /**< */, | | xcb_glx_are_textures_resident_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_are_textures_resident_cookie_t
cookie /**< */, | | xcb_glx_are_textures_resident_cookie_t
cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_delete_textures_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10378 | | skipping to change at line 10801 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_delete_textures (xcb_connection_t *c /**< */, | | xcb_glx_delete_textures (xcb_connection_t *c /**< */, | |
| xcb_glx_context_tag_t context_tag /**< */, | | xcb_glx_context_tag_t context_tag /**< */, | |
| int32_t n /**< */, | | int32_t n /**< */, | |
| const uint32_t *textures /**< */); | | const uint32_t *textures /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_gen_textures_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 10582 | | skipping to change at line 11008 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_is_texture_reply_t * | | ** @returns xcb_glx_is_texture_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_is_texture_reply_t * | | xcb_glx_is_texture_reply_t * | |
| xcb_glx_is_texture_reply (xcb_connection_t *c /**< */, | | xcb_glx_is_texture_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_is_texture_cookie_t cookie /**< */, | | xcb_glx_is_texture_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_color_table_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 10714 | | skipping to change at line 11143 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_color_table_reply_t * | | ** @returns xcb_glx_get_color_table_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_color_table_reply_t * | | xcb_glx_get_color_table_reply_t * | |
| xcb_glx_get_color_table_reply (xcb_connection_t *c /**< *
/, | | xcb_glx_get_color_table_reply (xcb_connection_t *c /**< *
/, | |
| xcb_glx_get_color_table_cookie_t cookie /
**< */, | | xcb_glx_get_color_table_cookie_t cookie /
**< */, | |
| xcb_generic_error_t **e /**< *
/); | | xcb_generic_error_t **e /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_color_table_parameterfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 10838 | | skipping to change at line 11270 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_color_table_parameterfv_reply_t * | | ** @returns xcb_glx_get_color_table_parameterfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_color_table_parameterfv_reply_t * | | xcb_glx_get_color_table_parameterfv_reply_t * | |
| xcb_glx_get_color_table_parameterfv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_color_table_parameterfv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_color_table_paramete
rfv_cookie_t cookie /**< */, | | xcb_glx_get_color_table_paramete
rfv_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_color_table_parameteriv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 10962 | | skipping to change at line 11397 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_color_table_parameteriv_reply_t * | | ** @returns xcb_glx_get_color_table_parameteriv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_color_table_parameteriv_reply_t * | | xcb_glx_get_color_table_parameteriv_reply_t * | |
| xcb_glx_get_color_table_parameteriv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_color_table_parameteriv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_color_table_paramete
riv_cookie_t cookie /**< */, | | xcb_glx_get_color_table_paramete
riv_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_convolution_filter_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11094 | | skipping to change at line 11532 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_convolution_filter_reply_t * | | ** @returns xcb_glx_get_convolution_filter_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_convolution_filter_reply_t * | | xcb_glx_get_convolution_filter_reply_t * | |
| xcb_glx_get_convolution_filter_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_convolution_filter_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_convolution_filter_cookie
_t cookie /**< */, | | xcb_glx_get_convolution_filter_cookie
_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_convolution_parameterfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11218 | | skipping to change at line 11659 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_convolution_parameterfv_reply_t * | | ** @returns xcb_glx_get_convolution_parameterfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_convolution_parameterfv_reply_t * | | xcb_glx_get_convolution_parameterfv_reply_t * | |
| xcb_glx_get_convolution_parameterfv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_convolution_parameterfv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_convolution_paramete
rfv_cookie_t cookie /**< */, | | xcb_glx_get_convolution_paramete
rfv_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_convolution_parameteriv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11342 | | skipping to change at line 11786 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_convolution_parameteriv_reply_t * | | ** @returns xcb_glx_get_convolution_parameteriv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_convolution_parameteriv_reply_t * | | xcb_glx_get_convolution_parameteriv_reply_t * | |
| xcb_glx_get_convolution_parameteriv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_convolution_parameteriv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_convolution_paramete
riv_cookie_t cookie /**< */, | | xcb_glx_get_convolution_paramete
riv_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_separable_filter_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11474 | | skipping to change at line 11921 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_separable_filter_reply_t * | | ** @returns xcb_glx_get_separable_filter_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_separable_filter_reply_t * | | xcb_glx_get_separable_filter_reply_t * | |
| xcb_glx_get_separable_filter_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_separable_filter_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_separable_filter_cookie_t
cookie /**< */, | | xcb_glx_get_separable_filter_cookie_t
cookie /**< */, | |
| xcb_generic_error_t *
*e /**< */); | | xcb_generic_error_t *
*e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_histogram_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11610 | | skipping to change at line 12060 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_histogram_reply_t * | | ** @returns xcb_glx_get_histogram_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_histogram_reply_t * | | xcb_glx_get_histogram_reply_t * | |
| xcb_glx_get_histogram_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_histogram_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_histogram_cookie_t cookie /**<
*/, | | xcb_glx_get_histogram_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_histogram_parameterfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11734 | | skipping to change at line 12187 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_histogram_parameterfv_reply_t * | | ** @returns xcb_glx_get_histogram_parameterfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_histogram_parameterfv_reply_t * | | xcb_glx_get_histogram_parameterfv_reply_t * | |
| xcb_glx_get_histogram_parameterfv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_histogram_parameterfv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_histogram_parameterfv_
cookie_t cookie /**< */, | | xcb_glx_get_histogram_parameterfv_
cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_histogram_parameteriv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11858 | | skipping to change at line 12314 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_histogram_parameteriv_reply_t * | | ** @returns xcb_glx_get_histogram_parameteriv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_histogram_parameteriv_reply_t * | | xcb_glx_get_histogram_parameteriv_reply_t * | |
| xcb_glx_get_histogram_parameteriv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_histogram_parameteriv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_histogram_parameteriv_
cookie_t cookie /**< */, | | xcb_glx_get_histogram_parameteriv_
cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_minmax_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11994 | | skipping to change at line 12453 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_minmax_reply_t * | | ** @returns xcb_glx_get_minmax_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_minmax_reply_t * | | xcb_glx_get_minmax_reply_t * | |
| xcb_glx_get_minmax_reply (xcb_connection_t *c /**< */, | | xcb_glx_get_minmax_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_get_minmax_cookie_t cookie /**< */, | | xcb_glx_get_minmax_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_minmax_parameterfv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12118 | | skipping to change at line 12580 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_minmax_parameterfv_reply_t * | | ** @returns xcb_glx_get_minmax_parameterfv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_minmax_parameterfv_reply_t * | | xcb_glx_get_minmax_parameterfv_reply_t * | |
| xcb_glx_get_minmax_parameterfv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_minmax_parameterfv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_minmax_parameterfv_cookie
_t cookie /**< */, | | xcb_glx_get_minmax_parameterfv_cookie
_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_minmax_parameteriv_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12242 | | skipping to change at line 12707 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_minmax_parameteriv_reply_t * | | ** @returns xcb_glx_get_minmax_parameteriv_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_minmax_parameteriv_reply_t * | | xcb_glx_get_minmax_parameteriv_reply_t * | |
| xcb_glx_get_minmax_parameteriv_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_minmax_parameteriv_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_minmax_parameteriv_cookie
_t cookie /**< */, | | xcb_glx_get_minmax_parameteriv_cookie
_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_compressed_tex_image_arb_sizeof (const void *_buffer /**< */) | |
| | | ; | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12366 | | skipping to change at line 12834 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_compressed_tex_image_arb_reply_t * | | ** @returns xcb_glx_get_compressed_tex_image_arb_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_compressed_tex_image_arb_reply_t * | | xcb_glx_get_compressed_tex_image_arb_reply_t * | |
| xcb_glx_get_compressed_tex_image_arb_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_compressed_tex_image_arb_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_compressed_tex_imag
e_arb_cookie_t cookie /**< */, | | xcb_glx_get_compressed_tex_imag
e_arb_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_delete_queries_arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 12423 | | skipping to change at line 12894 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_glx_delete_queries_arb (xcb_connection_t *c /**< */, | | xcb_glx_delete_queries_arb (xcb_connection_t *c /**< */, | |
| xcb_glx_context_tag_t context_tag /**< */, | | xcb_glx_context_tag_t context_tag /**< */, | |
| int32_t n /**< */, | | int32_t n /**< */, | |
| const uint32_t *ids /**< */); | | const uint32_t *ids /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_gen_queries_arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12627 | | skipping to change at line 13101 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_is_query_arb_reply_t * | | ** @returns xcb_glx_is_query_arb_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_is_query_arb_reply_t * | | xcb_glx_is_query_arb_reply_t * | |
| xcb_glx_is_query_arb_reply (xcb_connection_t *c /**< */, | | xcb_glx_is_query_arb_reply (xcb_connection_t *c /**< */, | |
| xcb_glx_is_query_arb_cookie_t cookie /**< */
, | | xcb_glx_is_query_arb_cookie_t cookie /**< */
, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_queryiv_arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12751 | | skipping to change at line 13228 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_queryiv_arb_reply_t * | | ** @returns xcb_glx_get_queryiv_arb_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_queryiv_arb_reply_t * | | xcb_glx_get_queryiv_arb_reply_t * | |
| xcb_glx_get_queryiv_arb_reply (xcb_connection_t *c /**< *
/, | | xcb_glx_get_queryiv_arb_reply (xcb_connection_t *c /**< *
/, | |
| xcb_glx_get_queryiv_arb_cookie_t cookie /
**< */, | | xcb_glx_get_queryiv_arb_cookie_t cookie /
**< */, | |
| xcb_generic_error_t **e /**< *
/); | | xcb_generic_error_t **e /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_query_objectiv_arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12875 | | skipping to change at line 13355 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_glx_get_query_objectiv_arb_reply_t * | | ** @returns xcb_glx_get_query_objectiv_arb_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_glx_get_query_objectiv_arb_reply_t * | | xcb_glx_get_query_objectiv_arb_reply_t * | |
| xcb_glx_get_query_objectiv_arb_reply (xcb_connection_t
*c /**< */, | | xcb_glx_get_query_objectiv_arb_reply (xcb_connection_t
*c /**< */, | |
| xcb_glx_get_query_objectiv_arb_cookie
_t cookie /**< */, | | xcb_glx_get_query_objectiv_arb_cookie
_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_glx_get_query_objectuiv_arb_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
End of changes. 77 change blocks. |
| 84 lines changed or deleted | | 610 lines changed or added | |
|
| randr.h | | randr.h | |
| | | | |
| skipping to change at line 1382 | | skipping to change at line 1382 | |
| ** xcb_generic_iterator_t xcb_randr_screen_size_end | | ** xcb_generic_iterator_t xcb_randr_screen_size_end | |
| ** | | ** | |
| ** @param xcb_randr_screen_size_iterator_t i | | ** @param xcb_randr_screen_size_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_randr_screen_size_end (xcb_randr_screen_size_iterator_t i /**< */); | | xcb_randr_screen_size_end (xcb_randr_screen_size_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_refresh_rates_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** uint16_t * xcb_randr_refresh_rates_rates | | ** uint16_t * xcb_randr_refresh_rates_rates | |
| ** | | ** | |
| ** @param const xcb_randr_refresh_rates_t *R | | ** @param const xcb_randr_refresh_rates_t *R | |
| ** @returns uint16_t * | | ** @returns uint16_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| uint16_t * | | uint16_t * | |
| | | | |
| skipping to change at line 1698 | | skipping to change at line 1701 | |
| ** @param uint16_t enable | | ** @param uint16_t enable | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_randr_select_input (xcb_connection_t *c /**< */, | | xcb_randr_select_input (xcb_connection_t *c /**< */, | |
| xcb_window_t window /**< */, | | xcb_window_t window /**< */, | |
| uint16_t enable /**< */); | | uint16_t enable /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_screen_info_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2026 | | skipping to change at line 2032 | |
| ** xcb_generic_iterator_t xcb_randr_mode_info_end | | ** xcb_generic_iterator_t xcb_randr_mode_info_end | |
| ** | | ** | |
| ** @param xcb_randr_mode_info_iterator_t i | | ** @param xcb_randr_mode_info_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_randr_mode_info_end (xcb_randr_mode_info_iterator_t i /**< */); | | xcb_randr_mode_info_end (xcb_randr_mode_info_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_screen_resources_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2250 | | skipping to change at line 2259 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_get_screen_resources_reply_t * | | ** @returns xcb_randr_get_screen_resources_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_get_screen_resources_reply_t * | | xcb_randr_get_screen_resources_reply_t * | |
| xcb_randr_get_screen_resources_reply (xcb_connection_t
*c /**< */, | | xcb_randr_get_screen_resources_reply (xcb_connection_t
*c /**< */, | |
| xcb_randr_get_screen_resources_cookie
_t cookie /**< */, | | xcb_randr_get_screen_resources_cookie
_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_output_info_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2478 | | skipping to change at line 2490 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_get_output_info_reply_t * | | ** @returns xcb_randr_get_output_info_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_get_output_info_reply_t * | | xcb_randr_get_output_info_reply_t * | |
| xcb_randr_get_output_info_reply (xcb_connection_t *c /*
*< */, | | xcb_randr_get_output_info_reply (xcb_connection_t *c /*
*< */, | |
| xcb_randr_get_output_info_cookie_t cooki
e /**< */, | | xcb_randr_get_output_info_cookie_t cooki
e /**< */, | |
| xcb_generic_error_t **e /*
*< */); | | xcb_generic_error_t **e /*
*< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_list_output_properties_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2594 | | skipping to change at line 2609 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_list_output_properties_reply_t * | | ** @returns xcb_randr_list_output_properties_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_list_output_properties_reply_t * | | xcb_randr_list_output_properties_reply_t * | |
| xcb_randr_list_output_properties_reply (xcb_connection_t
*c /**< */, | | xcb_randr_list_output_properties_reply (xcb_connection_t
*c /**< */, | |
| xcb_randr_list_output_properties_co
okie_t cookie /**< */, | | xcb_randr_list_output_properties_co
okie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_query_output_property_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2714 | | skipping to change at line 2732 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_query_output_property_reply_t * | | ** @returns xcb_randr_query_output_property_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_query_output_property_reply_t * | | xcb_randr_query_output_property_reply_t * | |
| xcb_randr_query_output_property_reply (xcb_connection_t
*c /**< */, | | xcb_randr_query_output_property_reply (xcb_connection_t
*c /**< */, | |
| xcb_randr_query_output_property_cook
ie_t cookie /**< */, | | xcb_randr_query_output_property_cook
ie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_configure_output_property_sizeof (const void *_buffer /**< */, | |
| | | uint32_t values_len /**< * | |
| | | /); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2783 | | skipping to change at line 2805 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_randr_configure_output_property (xcb_connection_t *c /**< */, | | xcb_randr_configure_output_property (xcb_connection_t *c /**< */, | |
| xcb_randr_output_t output /**< */, | | xcb_randr_output_t output /**< */, | |
| xcb_atom_t property /**< */, | | xcb_atom_t property /**< */, | |
| uint8_t pending /**< */, | | uint8_t pending /**< */, | |
| uint8_t range /**< */, | | uint8_t range /**< */, | |
| uint32_t values_len /**< *
/, | | uint32_t values_len /**< *
/, | |
| const int32_t *values /**< */); | | const int32_t *values /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_change_output_property_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2909 | | skipping to change at line 2934 | |
| ** @param xcb_atom_t property | | ** @param xcb_atom_t property | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_randr_delete_output_property (xcb_connection_t *c /**< */, | | xcb_randr_delete_output_property (xcb_connection_t *c /**< */, | |
| xcb_randr_output_t output /**< */, | | xcb_randr_output_t output /**< */, | |
| xcb_atom_t property /**< */); | | xcb_atom_t property /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_output_property_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3049 | | skipping to change at line 3077 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_get_output_property_reply_t * | | ** @returns xcb_randr_get_output_property_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_get_output_property_reply_t * | | xcb_randr_get_output_property_reply_t * | |
| xcb_randr_get_output_property_reply (xcb_connection_t
*c /**< */, | | xcb_randr_get_output_property_reply (xcb_connection_t
*c /**< */, | |
| xcb_randr_get_output_property_cookie_t
cookie /**< */, | | xcb_randr_get_output_property_cookie_t
cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_create_mode_sizeof (const void *_buffer /**< */, | |
| | | uint32_t name_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3296 | | skipping to change at line 3328 | |
| ** @param xcb_randr_mode_t mode | | ** @param xcb_randr_mode_t mode | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_randr_delete_output_mode (xcb_connection_t *c /**< */, | | xcb_randr_delete_output_mode (xcb_connection_t *c /**< */, | |
| xcb_randr_output_t output /**< */, | | xcb_randr_output_t output /**< */, | |
| xcb_randr_mode_t mode /**< */); | | xcb_randr_mode_t mode /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_crtc_info_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3452 | | skipping to change at line 3487 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_get_crtc_info_reply_t * | | ** @returns xcb_randr_get_crtc_info_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_get_crtc_info_reply_t * | | xcb_randr_get_crtc_info_reply_t * | |
| xcb_randr_get_crtc_info_reply (xcb_connection_t *c /**< *
/, | | xcb_randr_get_crtc_info_reply (xcb_connection_t *c /**< *
/, | |
| xcb_randr_get_crtc_info_cookie_t cookie /
**< */, | | xcb_randr_get_crtc_info_cookie_t cookie /
**< */, | |
| xcb_generic_error_t **e /**< *
/); | | xcb_generic_error_t **e /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_randr_set_crtc_config_sizeof (const void *_buffer /**< */, | |
| | | uint32_t outputs_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3644 | | skipping to change at line 3683 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_get_crtc_gamma_size_reply_t * | | ** @returns xcb_randr_get_crtc_gamma_size_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_get_crtc_gamma_size_reply_t * | | xcb_randr_get_crtc_gamma_size_reply_t * | |
| xcb_randr_get_crtc_gamma_size_reply (xcb_connection_t
*c /**< */, | | xcb_randr_get_crtc_gamma_size_reply (xcb_connection_t
*c /**< */, | |
| xcb_randr_get_crtc_gamma_size_cookie_t
cookie /**< */, | | xcb_randr_get_crtc_gamma_size_cookie_t
cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_crtc_gamma_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3832 | | skipping to change at line 3874 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_get_crtc_gamma_reply_t * | | ** @returns xcb_randr_get_crtc_gamma_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_get_crtc_gamma_reply_t * | | xcb_randr_get_crtc_gamma_reply_t * | |
| xcb_randr_get_crtc_gamma_reply (xcb_connection_t *c /**<
*/, | | xcb_randr_get_crtc_gamma_reply (xcb_connection_t *c /**<
*/, | |
| xcb_randr_get_crtc_gamma_cookie_t cookie
/**< */, | | xcb_randr_get_crtc_gamma_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_randr_set_crtc_gamma_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3897 | | skipping to change at line 3942 | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_randr_set_crtc_gamma (xcb_connection_t *c /**< */, | | xcb_randr_set_crtc_gamma (xcb_connection_t *c /**< */, | |
| xcb_randr_crtc_t crtc /**< */, | | xcb_randr_crtc_t crtc /**< */, | |
| uint16_t size /**< */, | | uint16_t size /**< */, | |
| const uint16_t *red /**< */, | | const uint16_t *red /**< */, | |
| const uint16_t *green /**< */, | | const uint16_t *green /**< */, | |
| const uint16_t *blue /**< */); | | const uint16_t *blue /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_screen_resources_current_sizeof (const void *_buffer /**< * | |
| | | /); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 4121 | | skipping to change at line 4169 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_randr_get_screen_resources_current_reply_t * | | ** @returns xcb_randr_get_screen_resources_current_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_randr_get_screen_resources_current_reply_t * | | xcb_randr_get_screen_resources_current_reply_t * | |
| xcb_randr_get_screen_resources_current_reply (xcb_connection_t
*c /**< */, | | xcb_randr_get_screen_resources_current_reply (xcb_connection_t
*c /**< */, | |
| xcb_randr_get_screen_resource
s_current_cookie_t cookie /**< */, | | xcb_randr_get_screen_resource
s_current_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_randr_set_crtc_transform_sizeof (const void *_buffer /**< */, | |
| | | uint32_t filter_params_len /**< * | |
| | | /); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4190 | | skipping to change at line 4242 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_randr_set_crtc_transform (xcb_connection_t *c /**< */, | | xcb_randr_set_crtc_transform (xcb_connection_t *c /**< */, | |
| xcb_randr_crtc_t crtc /**< */, | | xcb_randr_crtc_t crtc /**< */, | |
| xcb_render_transform_t transform /**< */, | | xcb_render_transform_t transform /**< */, | |
| uint16_t filter_len /**< */
, | | uint16_t filter_len /**< */
, | |
| const char *filter_name /**< *
/, | | const char *filter_name /**< *
/, | |
| uint32_t filter_params_len
/**< */, | | uint32_t filter_params_len
/**< */, | |
| const xcb_render_fixed_t *filter_params /**<
*/); | | const xcb_render_fixed_t *filter_params /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_randr_get_crtc_transform_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
End of changes. 17 change blocks. |
| 0 lines changed or deleted | | 58 lines changed or added | |
|
| render.h | | render.h | |
| | | | |
| skipping to change at line 23 | | skipping to change at line 23 | |
| #define __RENDER_H | | #define __RENDER_H | |
| | | | |
| #include "xcb.h" | | #include "xcb.h" | |
| #include "xproto.h" | | #include "xproto.h" | |
| | | | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| extern "C" { | | extern "C" { | |
| #endif | | #endif | |
| | | | |
| #define XCB_RENDER_MAJOR_VERSION 0 | | #define XCB_RENDER_MAJOR_VERSION 0 | |
|
| #define XCB_RENDER_MINOR_VERSION 10 | | #define XCB_RENDER_MINOR_VERSION 11 | |
| | | | |
| extern xcb_extension_t xcb_render_id; | | extern xcb_extension_t xcb_render_id; | |
| | | | |
| typedef enum xcb_render_pict_type_t { | | typedef enum xcb_render_pict_type_t { | |
| XCB_RENDER_PICT_TYPE_INDEXED, | | XCB_RENDER_PICT_TYPE_INDEXED, | |
| XCB_RENDER_PICT_TYPE_DIRECT | | XCB_RENDER_PICT_TYPE_DIRECT | |
| } xcb_render_pict_type_t; | | } xcb_render_pict_type_t; | |
| | | | |
| typedef enum xcb_render_picture_enum_t { | | typedef enum xcb_render_picture_enum_t { | |
| XCB_RENDER_PICTURE_NONE | | XCB_RENDER_PICTURE_NONE | |
| | | | |
| skipping to change at line 74 | | skipping to change at line 74 | |
| XCB_RENDER_PICT_OP_CONJOINT_SRC, | | XCB_RENDER_PICT_OP_CONJOINT_SRC, | |
| XCB_RENDER_PICT_OP_CONJOINT_DST, | | XCB_RENDER_PICT_OP_CONJOINT_DST, | |
| XCB_RENDER_PICT_OP_CONJOINT_OVER, | | XCB_RENDER_PICT_OP_CONJOINT_OVER, | |
| XCB_RENDER_PICT_OP_CONJOINT_OVER_REVERSE, | | XCB_RENDER_PICT_OP_CONJOINT_OVER_REVERSE, | |
| XCB_RENDER_PICT_OP_CONJOINT_IN, | | XCB_RENDER_PICT_OP_CONJOINT_IN, | |
| XCB_RENDER_PICT_OP_CONJOINT_IN_REVERSE, | | XCB_RENDER_PICT_OP_CONJOINT_IN_REVERSE, | |
| XCB_RENDER_PICT_OP_CONJOINT_OUT, | | XCB_RENDER_PICT_OP_CONJOINT_OUT, | |
| XCB_RENDER_PICT_OP_CONJOINT_OUT_REVERSE, | | XCB_RENDER_PICT_OP_CONJOINT_OUT_REVERSE, | |
| XCB_RENDER_PICT_OP_CONJOINT_ATOP, | | XCB_RENDER_PICT_OP_CONJOINT_ATOP, | |
| XCB_RENDER_PICT_OP_CONJOINT_ATOP_REVERSE, | | XCB_RENDER_PICT_OP_CONJOINT_ATOP_REVERSE, | |
|
| XCB_RENDER_PICT_OP_CONJOINT_XOR | | XCB_RENDER_PICT_OP_CONJOINT_XOR, | |
| | | XCB_RENDER_PICT_OP_MULTIPLY = 48, | |
| | | XCB_RENDER_PICT_OP_SCREEN, | |
| | | XCB_RENDER_PICT_OP_OVERLAY, | |
| | | XCB_RENDER_PICT_OP_DARKEN, | |
| | | XCB_RENDER_PICT_OP_LIGHTEN, | |
| | | XCB_RENDER_PICT_OP_COLOR_DODGE, | |
| | | XCB_RENDER_PICT_OP_COLOR_BURN, | |
| | | XCB_RENDER_PICT_OP_HARD_LIGHT, | |
| | | XCB_RENDER_PICT_OP_SOFT_LIGHT, | |
| | | XCB_RENDER_PICT_OP_DIFFERENCE, | |
| | | XCB_RENDER_PICT_OP_EXCLUSION, | |
| | | XCB_RENDER_PICT_OP_HSL_HUE, | |
| | | XCB_RENDER_PICT_OP_HSL_SATURATION, | |
| | | XCB_RENDER_PICT_OP_HSL_COLOR, | |
| | | XCB_RENDER_PICT_OP_HSL_LUMINOSITY | |
| } xcb_render_pict_op_t; | | } xcb_render_pict_op_t; | |
| | | | |
| typedef enum xcb_render_poly_edge_t { | | typedef enum xcb_render_poly_edge_t { | |
| XCB_RENDER_POLY_EDGE_SHARP, | | XCB_RENDER_POLY_EDGE_SHARP, | |
| XCB_RENDER_POLY_EDGE_SMOOTH | | XCB_RENDER_POLY_EDGE_SMOOTH | |
| } xcb_render_poly_edge_t; | | } xcb_render_poly_edge_t; | |
| | | | |
| typedef enum xcb_render_poly_mode_t { | | typedef enum xcb_render_poly_mode_t { | |
| XCB_RENDER_POLY_MODE_PRECISE, | | XCB_RENDER_POLY_MODE_PRECISE, | |
| XCB_RENDER_POLY_MODE_IMPRECISE | | XCB_RENDER_POLY_MODE_IMPRECISE | |
| | | | |
| skipping to change at line 1456 | | skipping to change at line 1471 | |
| ** xcb_generic_iterator_t xcb_render_pictvisual_end | | ** xcb_generic_iterator_t xcb_render_pictvisual_end | |
| ** | | ** | |
| ** @param xcb_render_pictvisual_iterator_t i | | ** @param xcb_render_pictvisual_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_render_pictvisual_end (xcb_render_pictvisual_iterator_t i /**< */); | | xcb_render_pictvisual_end (xcb_render_pictvisual_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_pictdepth_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_render_pictvisual_t * xcb_render_pictdepth_visuals | | ** xcb_render_pictvisual_t * xcb_render_pictdepth_visuals | |
| ** | | ** | |
| ** @param const xcb_render_pictdepth_t *R | | ** @param const xcb_render_pictdepth_t *R | |
| ** @returns xcb_render_pictvisual_t * | | ** @returns xcb_render_pictvisual_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_render_pictvisual_t * | | xcb_render_pictvisual_t * | |
| | | | |
| skipping to change at line 1535 | | skipping to change at line 1553 | |
| ** xcb_generic_iterator_t xcb_render_pictdepth_end | | ** xcb_generic_iterator_t xcb_render_pictdepth_end | |
| ** | | ** | |
| ** @param xcb_render_pictdepth_iterator_t i | | ** @param xcb_render_pictdepth_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_render_pictdepth_end (xcb_render_pictdepth_iterator_t i /**< */); | | xcb_render_pictdepth_end (xcb_render_pictdepth_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_pictscreen_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** int xcb_render_pictscreen_depths_length | | ** int xcb_render_pictscreen_depths_length | |
| ** | | ** | |
| ** @param const xcb_render_pictscreen_t *R | | ** @param const xcb_render_pictscreen_t *R | |
| ** @returns int | | ** @returns int | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| int | | int | |
| | | | |
| skipping to change at line 1987 | | skipping to change at line 2008 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_render_query_version_reply_t * | | ** @returns xcb_render_query_version_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_render_query_version_reply_t * | | xcb_render_query_version_reply_t * | |
| xcb_render_query_version_reply (xcb_connection_t *c /**<
*/, | | xcb_render_query_version_reply (xcb_connection_t *c /**<
*/, | |
| xcb_render_query_version_cookie_t cookie
/**< */, | | xcb_render_query_version_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_render_query_pict_formats_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2159 | | skipping to change at line 2183 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_render_query_pict_formats_reply_t * | | ** @returns xcb_render_query_pict_formats_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_render_query_pict_formats_reply_t * | | xcb_render_query_pict_formats_reply_t * | |
| xcb_render_query_pict_formats_reply (xcb_connection_t
*c /**< */, | | xcb_render_query_pict_formats_reply (xcb_connection_t
*c /**< */, | |
| xcb_render_query_pict_formats_cookie_t
cookie /**< */, | | xcb_render_query_pict_formats_cookie_t
cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_query_pict_index_values_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2275 | | skipping to change at line 2302 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_render_query_pict_index_values_reply_t * | | ** @returns xcb_render_query_pict_index_values_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_render_query_pict_index_values_reply_t * | | xcb_render_query_pict_index_values_reply_t * | |
| xcb_render_query_pict_index_values_reply (xcb_connection_t
*c /**< */, | | xcb_render_query_pict_index_values_reply (xcb_connection_t
*c /**< */, | |
| xcb_render_query_pict_index_value
s_cookie_t cookie /**< */, | | xcb_render_query_pict_index_value
s_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_create_picture_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2340 | | skipping to change at line 2370 | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_create_picture (xcb_connection_t *c /**< */, | | xcb_render_create_picture (xcb_connection_t *c /**< */, | |
| xcb_render_picture_t pid /**< */, | | xcb_render_picture_t pid /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_render_pictformat_t format /**< */, | | xcb_render_pictformat_t format /**< */, | |
| uint32_t value_mask /**< */, | | uint32_t value_mask /**< */, | |
| const uint32_t *value_list /**< */); | | const uint32_t *value_list /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_change_picture_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2397 | | skipping to change at line 2430 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_change_picture (xcb_connection_t *c /**< */, | | xcb_render_change_picture (xcb_connection_t *c /**< */, | |
| xcb_render_picture_t picture /**< */, | | xcb_render_picture_t picture /**< */, | |
| uint32_t value_mask /**< */, | | uint32_t value_mask /**< */, | |
| const uint32_t *value_list /**< */); | | const uint32_t *value_list /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_set_picture_clip_rectangles_sizeof (const void *_buffer /**< * | |
| | | /, | |
| | | uint32_t rectangles_len | |
| | | /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2604 | | skipping to change at line 2641 | |
| xcb_render_picture_t dst /**< */, | | xcb_render_picture_t dst /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| int16_t mask_x /**< */, | | int16_t mask_x /**< */, | |
| int16_t mask_y /**< */, | | int16_t mask_y /**< */, | |
| int16_t dst_x /**< */, | | int16_t dst_x /**< */, | |
| int16_t dst_y /**< */, | | int16_t dst_y /**< */, | |
| uint16_t width /**< */, | | uint16_t width /**< */, | |
| uint16_t height /**< */); | | uint16_t height /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_trapezoids_sizeof (const void *_buffer /**< */, | |
| | | uint32_t traps_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2681 | | skipping to change at line 2722 | |
| xcb_render_trapezoids (xcb_connection_t *c /**< */, | | xcb_render_trapezoids (xcb_connection_t *c /**< */, | |
| uint8_t op /**< */, | | uint8_t op /**< */, | |
| xcb_render_picture_t src /**< */, | | xcb_render_picture_t src /**< */, | |
| xcb_render_picture_t dst /**< */, | | xcb_render_picture_t dst /**< */, | |
| xcb_render_pictformat_t mask_format /**< */, | | xcb_render_pictformat_t mask_format /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| uint32_t traps_len /**< */, | | uint32_t traps_len /**< */, | |
| const xcb_render_trapezoid_t *traps /**< */); | | const xcb_render_trapezoid_t *traps /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_triangles_sizeof (const void *_buffer /**< */, | |
| | | uint32_t triangles_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2758 | | skipping to change at line 2803 | |
| xcb_render_triangles (xcb_connection_t *c /**< */, | | xcb_render_triangles (xcb_connection_t *c /**< */, | |
| uint8_t op /**< */, | | uint8_t op /**< */, | |
| xcb_render_picture_t src /**< */, | | xcb_render_picture_t src /**< */, | |
| xcb_render_picture_t dst /**< */, | | xcb_render_picture_t dst /**< */, | |
| xcb_render_pictformat_t mask_format /**< */, | | xcb_render_pictformat_t mask_format /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| uint32_t triangles_len /**< */, | | uint32_t triangles_len /**< */, | |
| const xcb_render_triangle_t *triangles /**< */); | | const xcb_render_triangle_t *triangles /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_tri_strip_sizeof (const void *_buffer /**< */, | |
| | | uint32_t points_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2835 | | skipping to change at line 2884 | |
| xcb_render_tri_strip (xcb_connection_t *c /**< */, | | xcb_render_tri_strip (xcb_connection_t *c /**< */, | |
| uint8_t op /**< */, | | uint8_t op /**< */, | |
| xcb_render_picture_t src /**< */, | | xcb_render_picture_t src /**< */, | |
| xcb_render_picture_t dst /**< */, | | xcb_render_picture_t dst /**< */, | |
| xcb_render_pictformat_t mask_format /**< */, | | xcb_render_pictformat_t mask_format /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| uint32_t points_len /**< */, | | uint32_t points_len /**< */, | |
| const xcb_render_pointfix_t *points /**< */); | | const xcb_render_pointfix_t *points /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_tri_fan_sizeof (const void *_buffer /**< */, | |
| | | uint32_t points_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3067 | | skipping to change at line 3120 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_render_glyphset_t glyphset | | ** @param xcb_render_glyphset_t glyphset | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_free_glyph_set (xcb_connection_t *c /**< */, | | xcb_render_free_glyph_set (xcb_connection_t *c /**< */, | |
| xcb_render_glyphset_t glyphset /**< */); | | xcb_render_glyphset_t glyphset /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_add_glyphs_sizeof (const void *_buffer /**< */, | |
| | | uint32_t data_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3136 | | skipping to change at line 3193 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_add_glyphs (xcb_connection_t *c /**< */, | | xcb_render_add_glyphs (xcb_connection_t *c /**< */, | |
| xcb_render_glyphset_t glyphset /**< */, | | xcb_render_glyphset_t glyphset /**< */, | |
| uint32_t glyphs_len /**< */, | | uint32_t glyphs_len /**< */, | |
| const uint32_t *glyphids /**< */, | | const uint32_t *glyphids /**< */, | |
| const xcb_render_glyphinfo_t *glyphs /**< */, | | const xcb_render_glyphinfo_t *glyphs /**< */, | |
| uint32_t data_len /**< */, | | uint32_t data_len /**< */, | |
| const uint8_t *data /**< */); | | const uint8_t *data /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_free_glyphs_sizeof (const void *_buffer /**< */, | |
| | | uint32_t glyphs_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3193 | | skipping to change at line 3254 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_free_glyphs (xcb_connection_t *c /**< */, | | xcb_render_free_glyphs (xcb_connection_t *c /**< */, | |
| xcb_render_glyphset_t glyphset /**< */, | | xcb_render_glyphset_t glyphset /**< */, | |
| uint32_t glyphs_len /**< */, | | uint32_t glyphs_len /**< */, | |
| const xcb_render_glyph_t *glyphs /**< */); | | const xcb_render_glyph_t *glyphs /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_composite_glyphs_8_sizeof (const void *_buffer /**< */, | |
| | | uint32_t glyphcmds_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3274 | | skipping to change at line 3339 | |
| uint8_t op /**< */, | | uint8_t op /**< */, | |
| xcb_render_picture_t src /**< */, | | xcb_render_picture_t src /**< */, | |
| xcb_render_picture_t dst /**< */, | | xcb_render_picture_t dst /**< */, | |
| xcb_render_pictformat_t mask_format /**< *
/, | | xcb_render_pictformat_t mask_format /**< *
/, | |
| xcb_render_glyphset_t glyphset /**< */, | | xcb_render_glyphset_t glyphset /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| uint32_t glyphcmds_len /**<
*/, | | uint32_t glyphcmds_len /**<
*/, | |
| const uint8_t *glyphcmds /**< */)
; | | const uint8_t *glyphcmds /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_render_composite_glyphs_16_sizeof (const void *_buffer /**< */, | |
| | | uint32_t glyphcmds_len /**< */) | |
| | | ; | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3355 | | skipping to change at line 3424 | |
| uint8_t op /**< */, | | uint8_t op /**< */, | |
| xcb_render_picture_t src /**< */, | | xcb_render_picture_t src /**< */, | |
| xcb_render_picture_t dst /**< */, | | xcb_render_picture_t dst /**< */, | |
| xcb_render_pictformat_t mask_format /**<
*/, | | xcb_render_pictformat_t mask_format /**<
*/, | |
| xcb_render_glyphset_t glyphset /**< */, | | xcb_render_glyphset_t glyphset /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| uint32_t glyphcmds_len /**
< */, | | uint32_t glyphcmds_len /**
< */, | |
| const uint8_t *glyphcmds /**< */
); | | const uint8_t *glyphcmds /**< */
); | |
| | | | |
|
| | | int | |
| | | xcb_render_composite_glyphs_32_sizeof (const void *_buffer /**< */, | |
| | | uint32_t glyphcmds_len /**< */) | |
| | | ; | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3436 | | skipping to change at line 3509 | |
| uint8_t op /**< */, | | uint8_t op /**< */, | |
| xcb_render_picture_t src /**< */, | | xcb_render_picture_t src /**< */, | |
| xcb_render_picture_t dst /**< */, | | xcb_render_picture_t dst /**< */, | |
| xcb_render_pictformat_t mask_format /**<
*/, | | xcb_render_pictformat_t mask_format /**<
*/, | |
| xcb_render_glyphset_t glyphset /**< */, | | xcb_render_glyphset_t glyphset /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| uint32_t glyphcmds_len /**
< */, | | uint32_t glyphcmds_len /**
< */, | |
| const uint8_t *glyphcmds /**< */
); | | const uint8_t *glyphcmds /**< */
); | |
| | | | |
|
| | | int | |
| | | xcb_render_fill_rectangles_sizeof (const void *_buffer /**< */, | |
| | | uint32_t rects_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3658 | | skipping to change at line 3735 | |
| ** @param xcb_render_transform_t transform | | ** @param xcb_render_transform_t transform | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_set_picture_transform (xcb_connection_t *c /**< */, | | xcb_render_set_picture_transform (xcb_connection_t *c /**< */, | |
| xcb_render_picture_t picture /**< */, | | xcb_render_picture_t picture /**< */, | |
| xcb_render_transform_t transform /**< *
/); | | xcb_render_transform_t transform /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_render_query_filters_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3798 | | skipping to change at line 3878 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_render_query_filters_reply_t * | | ** @returns xcb_render_query_filters_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_render_query_filters_reply_t * | | xcb_render_query_filters_reply_t * | |
| xcb_render_query_filters_reply (xcb_connection_t *c /**<
*/, | | xcb_render_query_filters_reply (xcb_connection_t *c /**<
*/, | |
| xcb_render_query_filters_cookie_t cookie
/**< */, | | xcb_render_query_filters_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_render_set_picture_filter_sizeof (const void *_buffer /**< */, | |
| | | uint32_t values_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3906 | | skipping to change at line 3990 | |
| ** xcb_generic_iterator_t xcb_render_animcursorelt_end | | ** xcb_generic_iterator_t xcb_render_animcursorelt_end | |
| ** | | ** | |
| ** @param xcb_render_animcursorelt_iterator_t i | | ** @param xcb_render_animcursorelt_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_render_animcursorelt_end (xcb_render_animcursorelt_iterator_t i /**< *
/); | | xcb_render_animcursorelt_end (xcb_render_animcursorelt_iterator_t i /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_render_create_anim_cursor_sizeof (const void *_buffer /**< */, | |
| | | uint32_t cursors_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4049 | | skipping to change at line 4137 | |
| ** xcb_generic_iterator_t xcb_render_trap_end | | ** xcb_generic_iterator_t xcb_render_trap_end | |
| ** | | ** | |
| ** @param xcb_render_trap_iterator_t i | | ** @param xcb_render_trap_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_render_trap_end (xcb_render_trap_iterator_t i /**< */); | | xcb_render_trap_end (xcb_render_trap_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_add_traps_sizeof (const void *_buffer /**< */, | |
| | | uint32_t traps_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4167 | | skipping to change at line 4259 | |
| ** @param xcb_render_color_t color | | ** @param xcb_render_color_t color | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_create_solid_fill (xcb_connection_t *c /**< */, | | xcb_render_create_solid_fill (xcb_connection_t *c /**< */, | |
| xcb_render_picture_t picture /**< */, | | xcb_render_picture_t picture /**< */, | |
| xcb_render_color_t color /**< */); | | xcb_render_color_t color /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_render_create_linear_gradient_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4236 | | skipping to change at line 4331 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_render_create_linear_gradient (xcb_connection_t *c /**< */, | | xcb_render_create_linear_gradient (xcb_connection_t *c /**< */, | |
| xcb_render_picture_t picture /**<
*/, | | xcb_render_picture_t picture /**<
*/, | |
| xcb_render_pointfix_t p1 /**< */, | | xcb_render_pointfix_t p1 /**< */, | |
| xcb_render_pointfix_t p2 /**< */, | | xcb_render_pointfix_t p2 /**< */, | |
| uint32_t num_stops /**
< */, | | uint32_t num_stops /**
< */, | |
| const xcb_render_fixed_t *stops /**< */
, | | const xcb_render_fixed_t *stops /**< */
, | |
| const xcb_render_color_t *colors /**< *
/); | | const xcb_render_color_t *colors /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_render_create_radial_gradient_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4313 | | skipping to change at line 4411 | |
| xcb_render_create_radial_gradient (xcb_connection_t *c /**< */, | | xcb_render_create_radial_gradient (xcb_connection_t *c /**< */, | |
| xcb_render_picture_t picture /**<
*/, | | xcb_render_picture_t picture /**<
*/, | |
| xcb_render_pointfix_t inner /**< */
, | | xcb_render_pointfix_t inner /**< */
, | |
| xcb_render_pointfix_t outer /**< */
, | | xcb_render_pointfix_t outer /**< */
, | |
| xcb_render_fixed_t inner_radius
/**< */, | | xcb_render_fixed_t inner_radius
/**< */, | |
| xcb_render_fixed_t outer_radius
/**< */, | | xcb_render_fixed_t outer_radius
/**< */, | |
| uint32_t num_stops /**
< */, | | uint32_t num_stops /**
< */, | |
| const xcb_render_fixed_t *stops /**< */
, | | const xcb_render_fixed_t *stops /**< */
, | |
| const xcb_render_color_t *colors /**< *
/); | | const xcb_render_color_t *colors /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_render_create_conical_gradient_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
End of changes. 26 change blocks. |
| 2 lines changed or deleted | | 107 lines changed or added | |
|
| sync.h | | sync.h | |
| | | | |
| skipping to change at line 23 | | skipping to change at line 23 | |
| #define __SYNC_H | | #define __SYNC_H | |
| | | | |
| #include "xcb.h" | | #include "xcb.h" | |
| #include "xproto.h" | | #include "xproto.h" | |
| | | | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| extern "C" { | | extern "C" { | |
| #endif | | #endif | |
| | | | |
| #define XCB_SYNC_MAJOR_VERSION 3 | | #define XCB_SYNC_MAJOR_VERSION 3 | |
|
| #define XCB_SYNC_MINOR_VERSION 0 | | #define XCB_SYNC_MINOR_VERSION 1 | |
| | | | |
| extern xcb_extension_t xcb_sync_id; | | extern xcb_extension_t xcb_sync_id; | |
| | | | |
| typedef uint32_t xcb_sync_alarm_t; | | typedef uint32_t xcb_sync_alarm_t; | |
| | | | |
| /** | | /** | |
| * @brief xcb_sync_alarm_iterator_t | | * @brief xcb_sync_alarm_iterator_t | |
| **/ | | **/ | |
| typedef struct xcb_sync_alarm_iterator_t { | | typedef struct xcb_sync_alarm_iterator_t { | |
| xcb_sync_alarm_t *data; /**< */ | | xcb_sync_alarm_t *data; /**< */ | |
| | | | |
| skipping to change at line 55 | | skipping to change at line 55 | |
| | | | |
| /** | | /** | |
| * @brief xcb_sync_counter_iterator_t | | * @brief xcb_sync_counter_iterator_t | |
| **/ | | **/ | |
| typedef struct xcb_sync_counter_iterator_t { | | typedef struct xcb_sync_counter_iterator_t { | |
| xcb_sync_counter_t *data; /**< */ | | xcb_sync_counter_t *data; /**< */ | |
| int rem; /**< */ | | int rem; /**< */ | |
| int index; /**< */ | | int index; /**< */ | |
| } xcb_sync_counter_iterator_t; | | } xcb_sync_counter_iterator_t; | |
| | | | |
|
| | | typedef uint32_t xcb_sync_fence_t; | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_fence_iterator_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 { | | typedef enum xcb_sync_testtype_t { | |
| XCB_SYNC_TESTTYPE_POSITIVE_TRANSITION, | | XCB_SYNC_TESTTYPE_POSITIVE_TRANSITION, | |
| XCB_SYNC_TESTTYPE_NEGATIVE_TRANSITION, | | XCB_SYNC_TESTTYPE_NEGATIVE_TRANSITION, | |
| XCB_SYNC_TESTTYPE_POSITIVE_COMPARISON, | | XCB_SYNC_TESTTYPE_POSITIVE_COMPARISON, | |
| XCB_SYNC_TESTTYPE_NEGATIVE_COMPARISON | | XCB_SYNC_TESTTYPE_NEGATIVE_COMPARISON | |
| } xcb_sync_testtype_t; | | } xcb_sync_testtype_t; | |
| | | | |
| typedef enum xcb_sync_valuetype_t { | | typedef enum xcb_sync_valuetype_t { | |
| XCB_SYNC_VALUETYPE_ABSOLUTE, | | XCB_SYNC_VALUETYPE_ABSOLUTE, | |
| XCB_SYNC_VALUETYPE_RELATIVE | | XCB_SYNC_VALUETYPE_RELATIVE | |
| | | | |
| skipping to change at line 461 | | skipping to change at line 472 | |
| * @brief xcb_sync_get_priority_reply_t | | * @brief xcb_sync_get_priority_reply_t | |
| **/ | | **/ | |
| typedef struct xcb_sync_get_priority_reply_t { | | typedef struct xcb_sync_get_priority_reply_t { | |
| uint8_t response_type; /**< */ | | uint8_t response_type; /**< */ | |
| uint8_t pad0; /**< */ | | uint8_t pad0; /**< */ | |
| uint16_t sequence; /**< */ | | uint16_t sequence; /**< */ | |
| uint32_t length; /**< */ | | uint32_t length; /**< */ | |
| int32_t priority; /**< */ | | int32_t priority; /**< */ | |
| } xcb_sync_get_priority_reply_t; | | } xcb_sync_get_priority_reply_t; | |
| | | | |
|
| | | /** Opcode for xcb_sync_create_fence. */ | |
| | | #define XCB_SYNC_CREATE_FENCE 14 | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_create_fence_request_t | |
| | | **/ | |
| | | 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; | |
| | | | |
| | | /** Opcode for xcb_sync_trigger_fence. */ | |
| | | #define XCB_SYNC_TRIGGER_FENCE 15 | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_trigger_fence_request_t | |
| | | **/ | |
| | | 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; | |
| | | | |
| | | /** Opcode for xcb_sync_reset_fence. */ | |
| | | #define XCB_SYNC_RESET_FENCE 16 | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_reset_fence_request_t | |
| | | **/ | |
| | | 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; | |
| | | | |
| | | /** Opcode for xcb_sync_destroy_fence. */ | |
| | | #define XCB_SYNC_DESTROY_FENCE 17 | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_destroy_fence_request_t | |
| | | **/ | |
| | | 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; | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_query_fence_cookie_t | |
| | | **/ | |
| | | typedef struct xcb_sync_query_fence_cookie_t { | |
| | | unsigned int sequence; /**< */ | |
| | | } xcb_sync_query_fence_cookie_t; | |
| | | | |
| | | /** Opcode for xcb_sync_query_fence. */ | |
| | | #define XCB_SYNC_QUERY_FENCE 18 | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_query_fence_request_t | |
| | | **/ | |
| | | 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; | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_query_fence_reply_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; | |
| | | | |
| | | /** Opcode for xcb_sync_await_fence. */ | |
| | | #define XCB_SYNC_AWAIT_FENCE 19 | |
| | | | |
| | | /** | |
| | | * @brief xcb_sync_await_fence_request_t | |
| | | **/ | |
| | | 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; | |
| | | | |
| /** Opcode for xcb_sync_counter_notify. */ | | /** Opcode for xcb_sync_counter_notify. */ | |
| #define XCB_SYNC_COUNTER_NOTIFY 0 | | #define XCB_SYNC_COUNTER_NOTIFY 0 | |
| | | | |
| /** | | /** | |
| * @brief xcb_sync_counter_notify_event_t | | * @brief xcb_sync_counter_notify_event_t | |
| **/ | | **/ | |
| typedef struct xcb_sync_counter_notify_event_t { | | typedef struct xcb_sync_counter_notify_event_t { | |
| uint8_t response_type; /**< */ | | uint8_t response_type; /**< */ | |
| uint8_t kind; /**< */ | | uint8_t kind; /**< */ | |
| uint16_t sequence; /**< */ | | uint16_t sequence; /**< */ | |
| | | | |
| skipping to change at line 586 | | skipping to change at line 695 | |
| ** @param xcb_sync_counter_iterator_t i | | ** @param xcb_sync_counter_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_sync_counter_end (xcb_sync_counter_iterator_t i /**< */); | | xcb_sync_counter_end (xcb_sync_counter_iterator_t i /**< */); | |
| | | | |
| /** | | /** | |
| * Get the next element of the iterator | | * Get the next element of the iterator | |
|
| | | * @param i Pointer to a xcb_sync_fence_iterator_t | |
| | | * | |
| | | * Get the next element in the iterator. The member rem is | |
| | | * decreased by one. The member data points to the next | |
| | | * element. The member index is increased by sizeof(xcb_sync_fence_t) | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** void xcb_sync_fence_next | |
| | | ** | |
| | | ** @param xcb_sync_fence_iterator_t *i | |
| | | ** @returns void | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | void | |
| | | xcb_sync_fence_next (xcb_sync_fence_iterator_t *i /**< */); | |
| | | | |
| | | /** | |
| | | * Return the iterator pointing to the last element | |
| | | * @param i An xcb_sync_fence_iterator_t | |
| | | * @return The iterator pointing to the last element | |
| | | * | |
| | | * Set the current element in the iterator to the last element. | |
| | | * The member rem is set to 0. The member data points to the | |
| | | * last element. | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_generic_iterator_t xcb_sync_fence_end | |
| | | ** | |
| | | ** @param xcb_sync_fence_iterator_t i | |
| | | ** @returns xcb_generic_iterator_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_generic_iterator_t | |
| | | xcb_sync_fence_end (xcb_sync_fence_iterator_t i /**< */); | |
| | | | |
| | | /** | |
| | | * Get the next element of the iterator | |
| * @param i Pointer to a xcb_sync_int64_iterator_t | | * @param i Pointer to a xcb_sync_int64_iterator_t | |
| * | | * | |
| * Get the next element in the iterator. The member rem is | | * Get the next element in the iterator. The member rem is | |
| * decreased by one. The member data points to the next | | * decreased by one. The member data points to the next | |
| * element. The member index is increased by sizeof(xcb_sync_int64_t) | | * element. The member index is increased by sizeof(xcb_sync_int64_t) | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** void xcb_sync_int64_next | | ** void xcb_sync_int64_next | |
| | | | |
| skipping to change at line 627 | | skipping to change at line 779 | |
| ** xcb_generic_iterator_t xcb_sync_int64_end | | ** xcb_generic_iterator_t xcb_sync_int64_end | |
| ** | | ** | |
| ** @param xcb_sync_int64_iterator_t i | | ** @param xcb_sync_int64_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_sync_int64_end (xcb_sync_int64_iterator_t i /**< */); | | xcb_sync_int64_end (xcb_sync_int64_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_sync_systemcounter_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** char * xcb_sync_systemcounter_name | | ** char * xcb_sync_systemcounter_name | |
| ** | | ** | |
| ** @param const xcb_sync_systemcounter_t *R | | ** @param const xcb_sync_systemcounter_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| | | | |
| skipping to change at line 876 | | skipping to change at line 1031 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_sync_initialize_reply_t * | | ** @returns xcb_sync_initialize_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_sync_initialize_reply_t * | | xcb_sync_initialize_reply_t * | |
| xcb_sync_initialize_reply (xcb_connection_t *c /**< */, | | xcb_sync_initialize_reply (xcb_connection_t *c /**< */, | |
| xcb_sync_initialize_cookie_t cookie /**< */, | | xcb_sync_initialize_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_sync_list_system_counters_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1158 | | skipping to change at line 1316 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_sync_query_counter_reply_t * | | ** @returns xcb_sync_query_counter_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_sync_query_counter_reply_t * | | xcb_sync_query_counter_reply_t * | |
| xcb_sync_query_counter_reply (xcb_connection_t *c /**< */, | | xcb_sync_query_counter_reply (xcb_connection_t *c /**< */, | |
| xcb_sync_query_counter_cookie_t cookie /**
< */, | | xcb_sync_query_counter_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_sync_await_sizeof (const void *_buffer /**< */, | |
| | | uint32_t wait_list_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 1317 | | skipping to change at line 1479 | |
| ** @param xcb_sync_int64_t value | | ** @param xcb_sync_int64_t value | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_sync_set_counter (xcb_connection_t *c /**< */, | | xcb_sync_set_counter (xcb_connection_t *c /**< */, | |
| xcb_sync_counter_t counter /**< */, | | xcb_sync_counter_t counter /**< */, | |
| xcb_sync_int64_t value /**< */); | | xcb_sync_int64_t value /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_sync_create_alarm_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 1374 | | skipping to change at line 1539 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_sync_create_alarm (xcb_connection_t *c /**< */, | | xcb_sync_create_alarm (xcb_connection_t *c /**< */, | |
| xcb_sync_alarm_t id /**< */, | | xcb_sync_alarm_t id /**< */, | |
| uint32_t value_mask /**< */, | | uint32_t value_mask /**< */, | |
| const uint32_t *value_list /**< */); | | const uint32_t *value_list /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_sync_change_alarm_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 1693 | | skipping to change at line 1861 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_sync_get_priority_reply_t * | | ** @returns xcb_sync_get_priority_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_sync_get_priority_reply_t * | | xcb_sync_get_priority_reply_t * | |
| xcb_sync_get_priority_reply (xcb_connection_t *c /**< */, | | xcb_sync_get_priority_reply (xcb_connection_t *c /**< */, | |
| xcb_sync_get_priority_cookie_t cookie /**<
*/, | | xcb_sync_get_priority_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_create_fence_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @param uint8_t initially_triggered | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | 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 /**< | |
| | | */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_create_fence | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_drawable_t drawable | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @param uint8_t initially_triggered | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | 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 /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_trigger_fence_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_sync_trigger_fence_checked (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_trigger_fence | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_sync_trigger_fence (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_reset_fence_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_sync_reset_fence_checked (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_reset_fence | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_sync_reset_fence (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_destroy_fence_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_sync_destroy_fence_checked (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_destroy_fence | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_sync_destroy_fence (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_sync_query_fence_cookie_t xcb_sync_query_fence | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_sync_query_fence_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_sync_query_fence_cookie_t | |
| | | xcb_sync_query_fence (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * placed in the event queue. | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_sync_query_fence_cookie_t xcb_sync_query_fence_unchecked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_fence_t fence | |
| | | ** @returns xcb_sync_query_fence_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_sync_query_fence_cookie_t | |
| | | xcb_sync_query_fence_unchecked (xcb_connection_t *c /**< */, | |
| | | xcb_sync_fence_t fence /**< */); | |
| | | | |
| | | /** | |
| | | * Return the reply | |
| | | * @param c The connection | |
| | | * @param cookie The cookie | |
| | | * @param e The xcb_generic_error_t supplied | |
| | | * | |
| | | * Returns the reply of the request asked by | |
| | | * | |
| | | * The parameter @p e supplied to this function must be NULL if | |
| | | * xcb_sync_query_fence_unchecked(). is used. | |
| | | * Otherwise, it stores the error if any. | |
| | | * | |
| | | * The returned value must be freed by the caller using free(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_sync_query_fence_reply_t * xcb_sync_query_fence_reply | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param xcb_sync_query_fence_cookie_t cookie | |
| | | ** @param xcb_generic_error_t **e | |
| | | ** @returns xcb_sync_query_fence_reply_t * | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | 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 /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | * This form can be used only if the request will not cause | |
| | | * a reply to be generated. Any returned error will be | |
| | | * saved for handling by xcb_request_check(). | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_await_fence_checked | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param uint32_t fence_list_len | |
| | | ** @param const xcb_sync_fence_t *fence_list | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | 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 /**< */); | |
| | | | |
| | | /** | |
| | | * Delivers a request to the X server | |
| | | * @param c The connection | |
| | | * @return A cookie | |
| | | * | |
| | | * Delivers a request to the X server. | |
| | | * | |
| | | */ | |
| | | | |
| | | /************************************************************************** | |
| | | *** | |
| | | ** | |
| | | ** xcb_void_cookie_t xcb_sync_await_fence | |
| | | ** | |
| | | ** @param xcb_connection_t *c | |
| | | ** @param uint32_t fence_list_len | |
| | | ** @param const xcb_sync_fence_t *fence_list | |
| | | ** @returns xcb_void_cookie_t | |
| | | ** | |
| | | ************************************************************************** | |
| | | ***/ | |
| | | | |
| | | xcb_void_cookie_t | |
| | | xcb_sync_await_fence (xcb_connection_t *c /**< */, | |
| | | uint32_t fence_list_len /**< */, | |
| | | const xcb_sync_fence_t *fence_list /**< */); | |
| | | | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| } | | } | |
| #endif | | #endif | |
| | | | |
| #endif | | #endif | |
| | | | |
| /** | | /** | |
| * @} | | * @} | |
| */ | | */ | |
| | | | |
End of changes. 10 change blocks. |
| 1 lines changed or deleted | | 543 lines changed or added | |
|
| xinput.h | | xinput.h | |
| | | | |
| skipping to change at line 2090 | | skipping to change at line 2090 | |
| ** xcb_generic_iterator_t xcb_input_event_class_end | | ** xcb_generic_iterator_t xcb_input_event_class_end | |
| ** | | ** | |
| ** @param xcb_input_event_class_iterator_t i | | ** @param xcb_input_event_class_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_event_class_end (xcb_input_event_class_iterator_t i /**< */); | | xcb_input_event_class_end (xcb_input_event_class_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_get_extension_version_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2217 | | skipping to change at line 2220 | |
| ** xcb_generic_iterator_t xcb_input_device_info_end | | ** xcb_generic_iterator_t xcb_input_device_info_end | |
| ** | | ** | |
| ** @param xcb_input_device_info_iterator_t i | | ** @param xcb_input_device_info_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_device_info_end (xcb_input_device_info_iterator_t i /**< */); | | xcb_input_device_info_end (xcb_input_device_info_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_list_input_devices_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2501 | | skipping to change at line 2507 | |
| ** xcb_generic_iterator_t xcb_input_axis_info_end | | ** xcb_generic_iterator_t xcb_input_axis_info_end | |
| ** | | ** | |
| ** @param xcb_input_axis_info_iterator_t i | | ** @param xcb_input_axis_info_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_axis_info_end (xcb_input_axis_info_iterator_t i /**< */); | | xcb_input_axis_info_end (xcb_input_axis_info_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_valuator_info_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_input_axis_info_t * xcb_input_valuator_info_axes | | ** xcb_input_axis_info_t * xcb_input_valuator_info_axes | |
| ** | | ** | |
| ** @param const xcb_input_valuator_info_t *R | | ** @param const xcb_input_valuator_info_t *R | |
| ** @returns xcb_input_axis_info_t * | | ** @returns xcb_input_axis_info_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_axis_info_t * | | xcb_input_axis_info_t * | |
| | | | |
| skipping to change at line 2623 | | skipping to change at line 2632 | |
| ** xcb_generic_iterator_t xcb_input_input_class_info_end | | ** xcb_generic_iterator_t xcb_input_input_class_info_end | |
| ** | | ** | |
| ** @param xcb_input_input_class_info_iterator_t i | | ** @param xcb_input_input_class_info_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_input_class_info_end (xcb_input_input_class_info_iterator_t i /*
*< */); | | xcb_input_input_class_info_end (xcb_input_input_class_info_iterator_t i /*
*< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_open_device_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2872 | | skipping to change at line 2884 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_input_set_device_mode_reply_t * | | ** @returns xcb_input_set_device_mode_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_set_device_mode_reply_t * | | xcb_input_set_device_mode_reply_t * | |
| xcb_input_set_device_mode_reply (xcb_connection_t *c /*
*< */, | | xcb_input_set_device_mode_reply (xcb_connection_t *c /*
*< */, | |
| xcb_input_set_device_mode_cookie_t cooki
e /**< */, | | xcb_input_set_device_mode_cookie_t cooki
e /**< */, | |
| xcb_generic_error_t **e /*
*< */); | | xcb_generic_error_t **e /*
*< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_select_extension_event_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2929 | | skipping to change at line 2944 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_input_select_extension_event (xcb_connection_t *c /**< */
, | | xcb_input_select_extension_event (xcb_connection_t *c /**< */
, | |
| xcb_window_t window /*
*< */, | | xcb_window_t window /*
*< */, | |
| uint16_t num_classe
s /**< */, | | uint16_t num_classe
s /**< */, | |
| const xcb_input_event_class_t *classes /
**< */); | | const xcb_input_event_class_t *classes /
**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_get_selected_extension_events_sizeof (const void *_buffer /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3081 | | skipping to change at line 3099 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_input_get_selected_extension_events_reply_t * | | ** @returns xcb_input_get_selected_extension_events_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_get_selected_extension_events_reply_t * | | xcb_input_get_selected_extension_events_reply_t * | |
| xcb_input_get_selected_extension_events_reply (xcb_connection_t
*c /**< */, | | xcb_input_get_selected_extension_events_reply (xcb_connection_t
*c /**< */, | |
| xcb_input_get_selected_exten
sion_events_cookie_t cookie /**< */, | | xcb_input_get_selected_exten
sion_events_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_change_device_dont_propagate_list_sizeof (const void *_buffer / | |
| | | **< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3142 | | skipping to change at line 3163 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_input_change_device_dont_propagate_list (xcb_connection_t
*c /**< */, | | xcb_input_change_device_dont_propagate_list (xcb_connection_t
*c /**< */, | |
| xcb_window_t
window /**< */, | | xcb_window_t
window /**< */, | |
| uint16_t
num_classes /**< */, | | uint16_t
num_classes /**< */, | |
| uint8_t
mode /**< */, | | uint8_t
mode /**< */, | |
| const xcb_input_event_class_t
*classes /**< */); | | const xcb_input_event_class_t
*classes /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_get_device_dont_propagate_list_sizeof (const void *_buffer /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3557 | | skipping to change at line 3581 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_input_change_pointer_device_reply_t * | | ** @returns xcb_input_change_pointer_device_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_change_pointer_device_reply_t * | | xcb_input_change_pointer_device_reply_t * | |
| xcb_input_change_pointer_device_reply (xcb_connection_t
*c /**< */, | | xcb_input_change_pointer_device_reply (xcb_connection_t
*c /**< */, | |
| xcb_input_change_pointer_device_cook
ie_t cookie /**< */, | | xcb_input_change_pointer_device_cook
ie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_grab_device_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 3718 | | skipping to change at line 3745 | |
| ** @param uint8_t device_id | | ** @param uint8_t device_id | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_input_ungrab_device (xcb_connection_t *c /**< */, | | xcb_input_ungrab_device (xcb_connection_t *c /**< */, | |
| xcb_timestamp_t time /**< */, | | xcb_timestamp_t time /**< */, | |
| uint8_t device_id /**< */); | | uint8_t device_id /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_grab_device_key_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 3868 | | skipping to change at line 3898 | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_input_ungrab_device_key (xcb_connection_t *c /**< */, | | xcb_input_ungrab_device_key (xcb_connection_t *c /**< */, | |
| xcb_window_t grabWindow /**< */, | | xcb_window_t grabWindow /**< */, | |
| uint16_t modifiers /**< */, | | uint16_t modifiers /**< */, | |
| uint8_t modifier_device /**< */, | | uint8_t modifier_device /**< */, | |
| uint8_t key /**< */, | | uint8_t key /**< */, | |
| uint8_t grabbed_device /**< */); | | uint8_t grabbed_device /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_grab_device_button_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 4468 | | skipping to change at line 4501 | |
| ** xcb_generic_iterator_t xcb_input_integer_feedback_state_end | | ** xcb_generic_iterator_t xcb_input_integer_feedback_state_end | |
| ** | | ** | |
| ** @param xcb_input_integer_feedback_state_iterator_t i | | ** @param xcb_input_integer_feedback_state_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_integer_feedback_state_end (xcb_input_integer_feedback_state_iter
ator_t i /**< */); | | xcb_input_integer_feedback_state_end (xcb_input_integer_feedback_state_iter
ator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_string_feedback_state_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_keysym_t * xcb_input_string_feedback_state_keysyms | | ** xcb_keysym_t * xcb_input_string_feedback_state_keysyms | |
| ** | | ** | |
| ** @param const xcb_input_string_feedback_state_t *R | | ** @param const xcb_input_string_feedback_state_t *R | |
| ** @returns xcb_keysym_t * | | ** @returns xcb_keysym_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_keysym_t * | | xcb_keysym_t * | |
| | | | |
| skipping to change at line 4805 | | skipping to change at line 4841 | |
| ** xcb_generic_iterator_t xcb_input_integer_feedback_ctl_end | | ** xcb_generic_iterator_t xcb_input_integer_feedback_ctl_end | |
| ** | | ** | |
| ** @param xcb_input_integer_feedback_ctl_iterator_t i | | ** @param xcb_input_integer_feedback_ctl_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_integer_feedback_ctl_end (xcb_input_integer_feedback_ctl_iterator
_t i /**< */); | | xcb_input_integer_feedback_ctl_end (xcb_input_integer_feedback_ctl_iterator
_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_string_feedback_ctl_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_keysym_t * xcb_input_string_feedback_ctl_keysyms | | ** xcb_keysym_t * xcb_input_string_feedback_ctl_keysyms | |
| ** | | ** | |
| ** @param const xcb_input_string_feedback_ctl_t *R | | ** @param const xcb_input_string_feedback_ctl_t *R | |
| ** @returns xcb_keysym_t * | | ** @returns xcb_keysym_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_keysym_t * | | xcb_keysym_t * | |
| | | | |
| skipping to change at line 4970 | | skipping to change at line 5009 | |
| ** xcb_generic_iterator_t xcb_input_led_feedback_ctl_end | | ** xcb_generic_iterator_t xcb_input_led_feedback_ctl_end | |
| ** | | ** | |
| ** @param xcb_input_led_feedback_ctl_iterator_t i | | ** @param xcb_input_led_feedback_ctl_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_led_feedback_ctl_end (xcb_input_led_feedback_ctl_iterator_t i /*
*< */); | | xcb_input_led_feedback_ctl_end (xcb_input_led_feedback_ctl_iterator_t i /*
*< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_get_device_key_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 5094 | | skipping to change at line 5136 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_input_get_device_key_mapping_reply_t * | | ** @returns xcb_input_get_device_key_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_get_device_key_mapping_reply_t * | | xcb_input_get_device_key_mapping_reply_t * | |
| xcb_input_get_device_key_mapping_reply (xcb_connection_t
*c /**< */, | | xcb_input_get_device_key_mapping_reply (xcb_connection_t
*c /**< */, | |
| xcb_input_get_device_key_mapping_co
okie_t cookie /**< */, | | xcb_input_get_device_key_mapping_co
okie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_change_device_key_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 5159 | | skipping to change at line 5204 | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_input_change_device_key_mapping (xcb_connection_t *c /**< */, | | xcb_input_change_device_key_mapping (xcb_connection_t *c /**< */, | |
| uint8_t device_id /**<
*/, | | uint8_t device_id /**<
*/, | |
| xcb_input_key_code_t first_keycode /
**< */, | | xcb_input_key_code_t first_keycode /
**< */, | |
| uint8_t keysyms_per_keyc
ode /**< */, | | uint8_t keysyms_per_keyc
ode /**< */, | |
| uint8_t keycode_count /
**< */, | | uint8_t keycode_count /
**< */, | |
| const xcb_keysym_t *keysyms /**< */
); | | const xcb_keysym_t *keysyms /**< */
); | |
| | | | |
|
| | | int | |
| | | xcb_input_get_device_modifier_mapping_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 5275 | | skipping to change at line 5323 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_input_get_device_modifier_mapping_reply_t * | | ** @returns xcb_input_get_device_modifier_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_get_device_modifier_mapping_reply_t * | | xcb_input_get_device_modifier_mapping_reply_t * | |
| xcb_input_get_device_modifier_mapping_reply (xcb_connection_t
*c /**< */, | | xcb_input_get_device_modifier_mapping_reply (xcb_connection_t
*c /**< */, | |
| xcb_input_get_device_modifier_
mapping_cookie_t cookie /**< */, | | xcb_input_get_device_modifier_
mapping_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_set_device_modifier_mapping_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 5363 | | skipping to change at line 5414 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_input_set_device_modifier_mapping_reply_t * | | ** @returns xcb_input_set_device_modifier_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_set_device_modifier_mapping_reply_t * | | xcb_input_set_device_modifier_mapping_reply_t * | |
| xcb_input_set_device_modifier_mapping_reply (xcb_connection_t
*c /**< */, | | xcb_input_set_device_modifier_mapping_reply (xcb_connection_t
*c /**< */, | |
| xcb_input_set_device_modifier_
mapping_cookie_t cookie /**< */, | | xcb_input_set_device_modifier_
mapping_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_get_device_button_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 5479 | | skipping to change at line 5533 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_input_get_device_button_mapping_reply_t * | | ** @returns xcb_input_get_device_button_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_input_get_device_button_mapping_reply_t * | | xcb_input_get_device_button_mapping_reply_t * | |
| xcb_input_get_device_button_mapping_reply (xcb_connection_t
*c /**< */, | | xcb_input_get_device_button_mapping_reply (xcb_connection_t
*c /**< */, | |
| xcb_input_get_device_button_mapp
ing_cookie_t cookie /**< */, | | xcb_input_get_device_button_mapp
ing_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_set_device_button_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 5776 | | skipping to change at line 5833 | |
| ** xcb_generic_iterator_t xcb_input_button_state_end | | ** xcb_generic_iterator_t xcb_input_button_state_end | |
| ** | | ** | |
| ** @param xcb_input_button_state_iterator_t i | | ** @param xcb_input_button_state_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_button_state_end (xcb_input_button_state_iterator_t i /**< */); | | xcb_input_button_state_end (xcb_input_button_state_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_valuator_state_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** uint32_t * xcb_input_valuator_state_valuators | | ** uint32_t * xcb_input_valuator_state_valuators | |
| ** | | ** | |
| ** @param const xcb_input_valuator_state_t *R | | ** @param const xcb_input_valuator_state_t *R | |
| ** @returns uint32_t * | | ** @returns uint32_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| uint32_t * | | uint32_t * | |
| | | | |
| skipping to change at line 5855 | | skipping to change at line 5915 | |
| ** xcb_generic_iterator_t xcb_input_valuator_state_end | | ** xcb_generic_iterator_t xcb_input_valuator_state_end | |
| ** | | ** | |
| ** @param xcb_input_valuator_state_iterator_t i | | ** @param xcb_input_valuator_state_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_valuator_state_end (xcb_input_valuator_state_iterator_t i /**< *
/); | | xcb_input_valuator_state_end (xcb_input_valuator_state_iterator_t i /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_input_send_extension_event_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 5989 | | skipping to change at line 6052 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_input_device_bell (xcb_connection_t *c /**< */, | | xcb_input_device_bell (xcb_connection_t *c /**< */, | |
| uint8_t device_id /**< */, | | uint8_t device_id /**< */, | |
| uint8_t feedback_id /**< */, | | uint8_t feedback_id /**< */, | |
| uint8_t feedback_class /**< */, | | uint8_t feedback_class /**< */, | |
| int8_t percent /**< */); | | int8_t percent /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_set_device_valuators_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 6208 | | skipping to change at line 6274 | |
| ** xcb_generic_iterator_t xcb_input_device_state_end | | ** xcb_generic_iterator_t xcb_input_device_state_end | |
| ** | | ** | |
| ** @param xcb_input_device_state_iterator_t i | | ** @param xcb_input_device_state_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_device_state_end (xcb_input_device_state_iterator_t i /**< */); | | xcb_input_device_state_end (xcb_input_device_state_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_device_resolution_state_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** uint32_t * xcb_input_device_resolution_state_resolution_values | | ** uint32_t * xcb_input_device_resolution_state_resolution_values | |
| ** | | ** | |
| ** @param const xcb_input_device_resolution_state_t *R | | ** @param const xcb_input_device_resolution_state_t *R | |
| ** @returns uint32_t * | | ** @returns uint32_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| uint32_t * | | uint32_t * | |
| | | | |
| skipping to change at line 6574 | | skipping to change at line 6643 | |
| ** xcb_generic_iterator_t xcb_input_device_ctl_end | | ** xcb_generic_iterator_t xcb_input_device_ctl_end | |
| ** | | ** | |
| ** @param xcb_input_device_ctl_iterator_t i | | ** @param xcb_input_device_ctl_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_input_device_ctl_end (xcb_input_device_ctl_iterator_t i /**< */); | | xcb_input_device_ctl_end (xcb_input_device_ctl_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_input_device_resolution_ctl_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** uint32_t * xcb_input_device_resolution_ctl_resolution_values | | ** uint32_t * xcb_input_device_resolution_ctl_resolution_values | |
| ** | | ** | |
| ** @param const xcb_input_device_resolution_ctl_t *R | | ** @param const xcb_input_device_resolution_ctl_t *R | |
| ** @returns uint32_t * | | ** @returns uint32_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| uint32_t * | | uint32_t * | |
| | | | |
End of changes. 24 change blocks. |
| 0 lines changed or deleted | | 77 lines changed or added | |
|
| xproto.h | | xproto.h | |
| | | | |
| skipping to change at line 2307 | | skipping to change at line 2307 | |
| | | | |
| /** | | /** | |
| * @brief xcb_translate_coordinates_reply_t | | * @brief xcb_translate_coordinates_reply_t | |
| **/ | | **/ | |
| typedef struct xcb_translate_coordinates_reply_t { | | typedef struct xcb_translate_coordinates_reply_t { | |
| uint8_t response_type; /**< */ | | uint8_t response_type; /**< */ | |
| uint8_t same_screen; /**< */ | | uint8_t same_screen; /**< */ | |
| uint16_t sequence; /**< */ | | uint16_t sequence; /**< */ | |
| uint32_t length; /**< */ | | uint32_t length; /**< */ | |
| xcb_window_t child; /**< */ | | xcb_window_t child; /**< */ | |
|
| uint16_t dst_x; /**< */ | | int16_t dst_x; /**< */ | |
| uint16_t dst_y; /**< */ | | int16_t dst_y; /**< */ | |
| } xcb_translate_coordinates_reply_t; | | } xcb_translate_coordinates_reply_t; | |
| | | | |
| /** Opcode for xcb_warp_pointer. */ | | /** Opcode for xcb_warp_pointer. */ | |
| #define XCB_WARP_POINTER 41 | | #define XCB_WARP_POINTER 41 | |
| | | | |
| /** | | /** | |
| * @brief xcb_warp_pointer_request_t | | * @brief xcb_warp_pointer_request_t | |
| **/ | | **/ | |
| typedef struct xcb_warp_pointer_request_t { | | typedef struct xcb_warp_pointer_request_t { | |
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| | | | |
| skipping to change at line 2671 | | skipping to change at line 2671 | |
| #define XCB_SET_FONT_PATH 51 | | #define XCB_SET_FONT_PATH 51 | |
| | | | |
| /** | | /** | |
| * @brief xcb_set_font_path_request_t | | * @brief xcb_set_font_path_request_t | |
| **/ | | **/ | |
| typedef struct xcb_set_font_path_request_t { | | typedef struct xcb_set_font_path_request_t { | |
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| uint8_t pad0; /**< */ | | uint8_t pad0; /**< */ | |
| uint16_t length; /**< */ | | uint16_t length; /**< */ | |
| uint16_t font_qty; /**< */ | | uint16_t font_qty; /**< */ | |
|
| | | uint8_t pad1[2]; /**< */ | |
| } xcb_set_font_path_request_t; | | } xcb_set_font_path_request_t; | |
| | | | |
| /** | | /** | |
| * @brief xcb_get_font_path_cookie_t | | * @brief xcb_get_font_path_cookie_t | |
| **/ | | **/ | |
| typedef struct xcb_get_font_path_cookie_t { | | typedef struct xcb_get_font_path_cookie_t { | |
| unsigned int sequence; /**< */ | | unsigned int sequence; /**< */ | |
| } xcb_get_font_path_cookie_t; | | } xcb_get_font_path_cookie_t; | |
| | | | |
| /** Opcode for xcb_get_font_path. */ | | /** Opcode for xcb_get_font_path. */ | |
| | | | |
| skipping to change at line 3866 | | skipping to change at line 3867 | |
| | | | |
| /** | | /** | |
| * @brief xcb_change_keyboard_mapping_request_t | | * @brief xcb_change_keyboard_mapping_request_t | |
| **/ | | **/ | |
| typedef struct xcb_change_keyboard_mapping_request_t { | | typedef struct xcb_change_keyboard_mapping_request_t { | |
| uint8_t major_opcode; /**< */ | | uint8_t major_opcode; /**< */ | |
| uint8_t keycode_count; /**< */ | | uint8_t keycode_count; /**< */ | |
| uint16_t length; /**< */ | | uint16_t length; /**< */ | |
| xcb_keycode_t first_keycode; /**< */ | | xcb_keycode_t first_keycode; /**< */ | |
| uint8_t keysyms_per_keycode; /**< */ | | uint8_t keysyms_per_keycode; /**< */ | |
|
| | | uint8_t pad0[2]; /**< */ | |
| } xcb_change_keyboard_mapping_request_t; | | } xcb_change_keyboard_mapping_request_t; | |
| | | | |
| /** | | /** | |
| * @brief xcb_get_keyboard_mapping_cookie_t | | * @brief xcb_get_keyboard_mapping_cookie_t | |
| **/ | | **/ | |
| typedef struct xcb_get_keyboard_mapping_cookie_t { | | typedef struct xcb_get_keyboard_mapping_cookie_t { | |
| unsigned int sequence; /**< */ | | unsigned int sequence; /**< */ | |
| } xcb_get_keyboard_mapping_cookie_t; | | } xcb_get_keyboard_mapping_cookie_t; | |
| | | | |
| /** Opcode for xcb_get_keyboard_mapping. */ | | /** Opcode for xcb_get_keyboard_mapping. */ | |
| | | | |
| skipping to change at line 5263 | | skipping to change at line 5265 | |
| ** xcb_generic_iterator_t xcb_visualtype_end | | ** xcb_generic_iterator_t xcb_visualtype_end | |
| ** | | ** | |
| ** @param xcb_visualtype_iterator_t i | | ** @param xcb_visualtype_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_visualtype_end (xcb_visualtype_iterator_t i /**< */); | | xcb_visualtype_end (xcb_visualtype_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_depth_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_visualtype_t * xcb_depth_visuals | | ** xcb_visualtype_t * xcb_depth_visuals | |
| ** | | ** | |
| ** @param const xcb_depth_t *R | | ** @param const xcb_depth_t *R | |
| ** @returns xcb_visualtype_t * | | ** @returns xcb_visualtype_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_visualtype_t * | | xcb_visualtype_t * | |
| | | | |
| skipping to change at line 5342 | | skipping to change at line 5347 | |
| ** xcb_generic_iterator_t xcb_depth_end | | ** xcb_generic_iterator_t xcb_depth_end | |
| ** | | ** | |
| ** @param xcb_depth_iterator_t i | | ** @param xcb_depth_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_depth_end (xcb_depth_iterator_t i /**< */); | | xcb_depth_end (xcb_depth_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_screen_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** int xcb_screen_allowed_depths_length | | ** int xcb_screen_allowed_depths_length | |
| ** | | ** | |
| ** @param const xcb_screen_t *R | | ** @param const xcb_screen_t *R | |
| ** @returns int | | ** @returns int | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| int | | int | |
| | | | |
| skipping to change at line 5409 | | skipping to change at line 5417 | |
| ** xcb_generic_iterator_t xcb_screen_end | | ** xcb_generic_iterator_t xcb_screen_end | |
| ** | | ** | |
| ** @param xcb_screen_iterator_t i | | ** @param xcb_screen_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_screen_end (xcb_screen_iterator_t i /**< */); | | xcb_screen_end (xcb_screen_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_setup_request_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** char * xcb_setup_request_authorization_protocol_name | | ** char * xcb_setup_request_authorization_protocol_name | |
| ** | | ** | |
| ** @param const xcb_setup_request_t *R | | ** @param const xcb_setup_request_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| | | | |
| skipping to change at line 5524 | | skipping to change at line 5535 | |
| ** xcb_generic_iterator_t xcb_setup_request_end | | ** xcb_generic_iterator_t xcb_setup_request_end | |
| ** | | ** | |
| ** @param xcb_setup_request_iterator_t i | | ** @param xcb_setup_request_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_setup_request_end (xcb_setup_request_iterator_t i /**< */); | | xcb_setup_request_end (xcb_setup_request_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_setup_failed_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** char * xcb_setup_failed_reason | | ** char * xcb_setup_failed_reason | |
| ** | | ** | |
| ** @param const xcb_setup_failed_t *R | | ** @param const xcb_setup_failed_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| | | | |
| skipping to change at line 5603 | | skipping to change at line 5617 | |
| ** xcb_generic_iterator_t xcb_setup_failed_end | | ** xcb_generic_iterator_t xcb_setup_failed_end | |
| ** | | ** | |
| ** @param xcb_setup_failed_iterator_t i | | ** @param xcb_setup_failed_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_setup_failed_end (xcb_setup_failed_iterator_t i /**< */); | | xcb_setup_failed_end (xcb_setup_failed_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_setup_authenticate_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** char * xcb_setup_authenticate_reason | | ** char * xcb_setup_authenticate_reason | |
| ** | | ** | |
| ** @param const xcb_setup_authenticate_t *R | | ** @param const xcb_setup_authenticate_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| | | | |
| skipping to change at line 5682 | | skipping to change at line 5699 | |
| ** xcb_generic_iterator_t xcb_setup_authenticate_end | | ** xcb_generic_iterator_t xcb_setup_authenticate_end | |
| ** | | ** | |
| ** @param xcb_setup_authenticate_iterator_t i | | ** @param xcb_setup_authenticate_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_setup_authenticate_end (xcb_setup_authenticate_iterator_t i /**< */); | | xcb_setup_authenticate_end (xcb_setup_authenticate_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_setup_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** char * xcb_setup_vendor | | ** char * xcb_setup_vendor | |
| ** | | ** | |
| ** @param const xcb_setup_t *R | | ** @param const xcb_setup_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| | | | |
| skipping to change at line 5864 | | skipping to change at line 5884 | |
| ** xcb_generic_iterator_t xcb_client_message_data_end | | ** xcb_generic_iterator_t xcb_client_message_data_end | |
| ** | | ** | |
| ** @param xcb_client_message_data_iterator_t i | | ** @param xcb_client_message_data_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_client_message_data_end (xcb_client_message_data_iterator_t i /**< */)
; | | xcb_client_message_data_end (xcb_client_message_data_iterator_t i /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_create_window_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 5957 | | skipping to change at line 5980 | |
| int16_t x /**< */, | | int16_t x /**< */, | |
| int16_t y /**< */, | | int16_t y /**< */, | |
| uint16_t width /**< */, | | uint16_t width /**< */, | |
| uint16_t height /**< */, | | uint16_t height /**< */, | |
| uint16_t border_width /**< */, | | uint16_t border_width /**< */, | |
| uint16_t _class /**< */, | | uint16_t _class /**< */, | |
| xcb_visualid_t visual /**< */, | | xcb_visualid_t visual /**< */, | |
| uint32_t value_mask /**< */, | | uint32_t value_mask /**< */, | |
| const uint32_t *value_list /**< */); | | const uint32_t *value_list /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_change_window_attributes_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 6502 | | skipping to change at line 6528 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_window_t window | | ** @param xcb_window_t window | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_unmap_subwindows (xcb_connection_t *c /**< */, | | xcb_unmap_subwindows (xcb_connection_t *c /**< */, | |
| xcb_window_t window /**< */); | | xcb_window_t window /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_configure_window_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 6692 | | skipping to change at line 6721 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_get_geometry_reply_t * | | ** @returns xcb_get_geometry_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_get_geometry_reply_t * | | xcb_get_geometry_reply_t * | |
| xcb_get_geometry_reply (xcb_connection_t *c /**< */, | | xcb_get_geometry_reply (xcb_connection_t *c /**< */, | |
| xcb_get_geometry_cookie_t cookie /**< */, | | xcb_get_geometry_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_query_tree_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 6808 | | skipping to change at line 6840 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_query_tree_reply_t * | | ** @returns xcb_query_tree_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_query_tree_reply_t * | | xcb_query_tree_reply_t * | |
| xcb_query_tree_reply (xcb_connection_t *c /**< */, | | xcb_query_tree_reply (xcb_connection_t *c /**< */, | |
| xcb_query_tree_cookie_t cookie /**< */, | | xcb_query_tree_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_intern_atom_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 6896 | | skipping to change at line 6931 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_intern_atom_reply_t * | | ** @returns xcb_intern_atom_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_intern_atom_reply_t * | | xcb_intern_atom_reply_t * | |
| xcb_intern_atom_reply (xcb_connection_t *c /**< */, | | xcb_intern_atom_reply (xcb_connection_t *c /**< */, | |
| xcb_intern_atom_cookie_t cookie /**< */, | | xcb_intern_atom_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_get_atom_name_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7012 | | skipping to change at line 7050 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_get_atom_name_reply_t * | | ** @returns xcb_get_atom_name_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_get_atom_name_reply_t * | | xcb_get_atom_name_reply_t * | |
| xcb_get_atom_name_reply (xcb_connection_t *c /**< */, | | xcb_get_atom_name_reply (xcb_connection_t *c /**< */, | |
| xcb_get_atom_name_cookie_t cookie /**< */, | | xcb_get_atom_name_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_change_property_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 7138 | | skipping to change at line 7179 | |
| ** @param xcb_atom_t property | | ** @param xcb_atom_t property | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_delete_property (xcb_connection_t *c /**< */, | | xcb_delete_property (xcb_connection_t *c /**< */, | |
| xcb_window_t window /**< */, | | xcb_window_t window /**< */, | |
| xcb_atom_t property /**< */); | | xcb_atom_t property /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_get_property_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 7274 | | skipping to change at line 7318 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_get_property_reply_t * | | ** @returns xcb_get_property_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_get_property_reply_t * | | xcb_get_property_reply_t * | |
| xcb_get_property_reply (xcb_connection_t *c /**< */, | | xcb_get_property_reply (xcb_connection_t *c /**< */, | |
| xcb_get_property_cookie_t cookie /**< */, | | xcb_get_property_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_list_properties_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 8542 | | skipping to change at line 8589 | |
| ** xcb_generic_iterator_t xcb_timecoord_end | | ** xcb_generic_iterator_t xcb_timecoord_end | |
| ** | | ** | |
| ** @param xcb_timecoord_iterator_t i | | ** @param xcb_timecoord_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_timecoord_end (xcb_timecoord_iterator_t i /**< */); | | xcb_timecoord_end (xcb_timecoord_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_get_motion_events_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9044 | | skipping to change at line 9094 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_query_keymap_reply_t * | | ** @returns xcb_query_keymap_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_query_keymap_reply_t * | | xcb_query_keymap_reply_t * | |
| xcb_query_keymap_reply (xcb_connection_t *c /**< */, | | xcb_query_keymap_reply (xcb_connection_t *c /**< */, | |
| xcb_query_keymap_cookie_t cookie /**< */, | | xcb_query_keymap_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_open_font_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 9236 | | skipping to change at line 9289 | |
| ** xcb_generic_iterator_t xcb_charinfo_end | | ** xcb_generic_iterator_t xcb_charinfo_end | |
| ** | | ** | |
| ** @param xcb_charinfo_iterator_t i | | ** @param xcb_charinfo_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_charinfo_end (xcb_charinfo_iterator_t i /**< */); | | xcb_charinfo_end (xcb_charinfo_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_query_font_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9388 | | skipping to change at line 9444 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_query_font_reply_t * | | ** @returns xcb_query_font_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_query_font_reply_t * | | xcb_query_font_reply_t * | |
| xcb_query_font_reply (xcb_connection_t *c /**< */, | | xcb_query_font_reply (xcb_connection_t *c /**< */, | |
| xcb_query_font_cookie_t cookie /**< */, | | xcb_query_font_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_query_text_extents_sizeof (const void *_buffer /**< */, | |
| | | uint32_t string_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9476 | | skipping to change at line 9536 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_query_text_extents_reply_t * | | ** @returns xcb_query_text_extents_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_query_text_extents_reply_t * | | xcb_query_text_extents_reply_t * | |
| xcb_query_text_extents_reply (xcb_connection_t *c /**< */, | | xcb_query_text_extents_reply (xcb_connection_t *c /**< */, | |
| xcb_query_text_extents_cookie_t cookie /**
< */, | | xcb_query_text_extents_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_str_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** char * xcb_str_name | | ** char * xcb_str_name | |
| ** | | ** | |
| ** @param const xcb_str_t *R | | ** @param const xcb_str_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| | | | |
| skipping to change at line 9555 | | skipping to change at line 9618 | |
| ** xcb_generic_iterator_t xcb_str_end | | ** xcb_generic_iterator_t xcb_str_end | |
| ** | | ** | |
| ** @param xcb_str_iterator_t i | | ** @param xcb_str_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_str_end (xcb_str_iterator_t i /**< */); | | xcb_str_end (xcb_str_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_list_fonts_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9667 | | skipping to change at line 9733 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_list_fonts_reply_t * | | ** @returns xcb_list_fonts_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_list_fonts_reply_t * | | xcb_list_fonts_reply_t * | |
| xcb_list_fonts_reply (xcb_connection_t *c /**< */, | | xcb_list_fonts_reply (xcb_connection_t *c /**< */, | |
| xcb_list_fonts_cookie_t cookie /**< */, | | xcb_list_fonts_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_list_fonts_with_info_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 9827 | | skipping to change at line 9896 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_list_fonts_with_info_reply_t * | | ** @returns xcb_list_fonts_with_info_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_list_fonts_with_info_reply_t * | | xcb_list_fonts_with_info_reply_t * | |
| xcb_list_fonts_with_info_reply (xcb_connection_t *c /**<
*/, | | xcb_list_fonts_with_info_reply (xcb_connection_t *c /**<
*/, | |
| xcb_list_fonts_with_info_cookie_t cookie
/**< */, | | xcb_list_fonts_with_info_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_set_font_path_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_set_font_path_checked | | ** xcb_void_cookie_t xcb_set_font_path_checked | |
| ** | | ** | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint16_t font_qty | | ** @param uint16_t font_qty | |
|
| ** @param uint32_t path_len | | ** @param const xcb_str_t *font | |
| ** @param const char *path | | | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_set_font_path_checked (xcb_connection_t *c /**< */, | | xcb_set_font_path_checked (xcb_connection_t *c /**< */, | |
| uint16_t font_qty /**< */, | | uint16_t font_qty /**< */, | |
|
| uint32_t path_len /**< */, | | const xcb_str_t *font /**< */); | |
| const char *path /**< */); | | | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_set_font_path | | ** xcb_void_cookie_t xcb_set_font_path | |
| ** | | ** | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint16_t font_qty | | ** @param uint16_t font_qty | |
|
| ** @param uint32_t path_len | | ** @param const xcb_str_t *font | |
| ** @param const char *path | | | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_set_font_path (xcb_connection_t *c /**< */, | | xcb_set_font_path (xcb_connection_t *c /**< */, | |
| uint16_t font_qty /**< */, | | uint16_t font_qty /**< */, | |
|
| uint32_t path_len /**< */, | | const xcb_str_t *font /**< */); | |
| const char *path /**< */); | | | |
| | | int | |
| | | xcb_get_font_path_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| | | | |
| skipping to change at line 10098 | | skipping to change at line 10169 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_pixmap_t pixmap | | ** @param xcb_pixmap_t pixmap | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_free_pixmap (xcb_connection_t *c /**< */, | | xcb_free_pixmap (xcb_connection_t *c /**< */, | |
| xcb_pixmap_t pixmap /**< */); | | xcb_pixmap_t pixmap /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_create_gc_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10159 | | skipping to change at line 10233 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_create_gc (xcb_connection_t *c /**< */, | | xcb_create_gc (xcb_connection_t *c /**< */, | |
| xcb_gcontext_t cid /**< */, | | xcb_gcontext_t cid /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| uint32_t value_mask /**< */, | | uint32_t value_mask /**< */, | |
| const uint32_t *value_list /**< */); | | const uint32_t *value_list /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_change_gc_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10273 | | skipping to change at line 10350 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_copy_gc (xcb_connection_t *c /**< */, | | xcb_copy_gc (xcb_connection_t *c /**< */, | |
| xcb_gcontext_t src_gc /**< */, | | xcb_gcontext_t src_gc /**< */, | |
| xcb_gcontext_t dst_gc /**< */, | | xcb_gcontext_t dst_gc /**< */, | |
| uint32_t value_mask /**< */); | | uint32_t value_mask /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_set_dashes_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10334 | | skipping to change at line 10414 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_set_dashes (xcb_connection_t *c /**< */, | | xcb_set_dashes (xcb_connection_t *c /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint16_t dash_offset /**< */, | | uint16_t dash_offset /**< */, | |
| uint16_t dashes_len /**< */, | | uint16_t dashes_len /**< */, | |
| const uint8_t *dashes /**< */); | | const uint8_t *dashes /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_set_clip_rectangles_sizeof (const void *_buffer /**< */, | |
| | | uint32_t rectangles_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10687 | | skipping to change at line 10771 | |
| xcb_drawable_t dst_drawable /**< */, | | xcb_drawable_t dst_drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| int16_t src_x /**< */, | | int16_t src_x /**< */, | |
| int16_t src_y /**< */, | | int16_t src_y /**< */, | |
| int16_t dst_x /**< */, | | int16_t dst_x /**< */, | |
| int16_t dst_y /**< */, | | int16_t dst_y /**< */, | |
| uint16_t width /**< */, | | uint16_t width /**< */, | |
| uint16_t height /**< */, | | uint16_t height /**< */, | |
| uint32_t bit_plane /**< */); | | uint32_t bit_plane /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_point_sizeof (const void *_buffer /**< */, | |
| | | uint32_t points_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10752 | | skipping to change at line 10840 | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_point (xcb_connection_t *c /**< */, | | xcb_poly_point (xcb_connection_t *c /**< */, | |
| uint8_t coordinate_mode /**< */, | | uint8_t coordinate_mode /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint32_t points_len /**< */, | | uint32_t points_len /**< */, | |
| const xcb_point_t *points /**< */); | | const xcb_point_t *points /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_line_sizeof (const void *_buffer /**< */, | |
| | | uint32_t points_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10860 | | skipping to change at line 10952 | |
| ** xcb_generic_iterator_t xcb_segment_end | | ** xcb_generic_iterator_t xcb_segment_end | |
| ** | | ** | |
| ** @param xcb_segment_iterator_t i | | ** @param xcb_segment_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_segment_end (xcb_segment_iterator_t i /**< */); | | xcb_segment_end (xcb_segment_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_segment_sizeof (const void *_buffer /**< */, | |
| | | uint32_t segments_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10921 | | skipping to change at line 11017 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_segment (xcb_connection_t *c /**< */, | | xcb_poly_segment (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint32_t segments_len /**< */, | | uint32_t segments_len /**< */, | |
| const xcb_segment_t *segments /**< */); | | const xcb_segment_t *segments /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_rectangle_sizeof (const void *_buffer /**< */, | |
| | | uint32_t rectangles_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 10982 | | skipping to change at line 11082 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_rectangle (xcb_connection_t *c /**< */, | | xcb_poly_rectangle (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint32_t rectangles_len /**< */, | | uint32_t rectangles_len /**< */, | |
| const xcb_rectangle_t *rectangles /**< */); | | const xcb_rectangle_t *rectangles /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_arc_sizeof (const void *_buffer /**< */, | |
| | | uint32_t arcs_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11043 | | skipping to change at line 11147 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_arc (xcb_connection_t *c /**< */, | | xcb_poly_arc (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint32_t arcs_len /**< */, | | uint32_t arcs_len /**< */, | |
| const xcb_arc_t *arcs /**< */); | | const xcb_arc_t *arcs /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_fill_poly_sizeof (const void *_buffer /**< */, | |
| | | uint32_t points_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11112 | | skipping to change at line 11220 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_fill_poly (xcb_connection_t *c /**< */, | | xcb_fill_poly (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint8_t shape /**< */, | | uint8_t shape /**< */, | |
| uint8_t coordinate_mode /**< */, | | uint8_t coordinate_mode /**< */, | |
| uint32_t points_len /**< */, | | uint32_t points_len /**< */, | |
| const xcb_point_t *points /**< */); | | const xcb_point_t *points /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_fill_rectangle_sizeof (const void *_buffer /**< */, | |
| | | uint32_t rectangles_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11173 | | skipping to change at line 11285 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_fill_rectangle (xcb_connection_t *c /**< */, | | xcb_poly_fill_rectangle (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint32_t rectangles_len /**< */, | | uint32_t rectangles_len /**< */, | |
| const xcb_rectangle_t *rectangles /**< */); | | const xcb_rectangle_t *rectangles /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_fill_arc_sizeof (const void *_buffer /**< */, | |
| | | uint32_t arcs_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11234 | | skipping to change at line 11350 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_fill_arc (xcb_connection_t *c /**< */, | | xcb_poly_fill_arc (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint32_t arcs_len /**< */, | | uint32_t arcs_len /**< */, | |
| const xcb_arc_t *arcs /**< */); | | const xcb_arc_t *arcs /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_put_image_sizeof (const void *_buffer /**< */, | |
| | | uint32_t data_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11323 | | skipping to change at line 11443 | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| uint16_t width /**< */, | | uint16_t width /**< */, | |
| uint16_t height /**< */, | | uint16_t height /**< */, | |
| int16_t dst_x /**< */, | | int16_t dst_x /**< */, | |
| int16_t dst_y /**< */, | | int16_t dst_y /**< */, | |
| uint8_t left_pad /**< */, | | uint8_t left_pad /**< */, | |
| uint8_t depth /**< */, | | uint8_t depth /**< */, | |
| uint32_t data_len /**< */, | | uint32_t data_len /**< */, | |
| const uint8_t *data /**< */); | | const uint8_t *data /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_get_image_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 11463 | | skipping to change at line 11586 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_get_image_reply_t * | | ** @returns xcb_get_image_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_get_image_reply_t * | | xcb_get_image_reply_t * | |
| xcb_get_image_reply (xcb_connection_t *c /**< */, | | xcb_get_image_reply (xcb_connection_t *c /**< */, | |
| xcb_get_image_cookie_t cookie /**< */, | | xcb_get_image_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_text_8_sizeof (const void *_buffer /**< */, | |
| | | uint32_t items_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11532 | | skipping to change at line 11659 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_text_8 (xcb_connection_t *c /**< */, | | xcb_poly_text_8 (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| int16_t x /**< */, | | int16_t x /**< */, | |
| int16_t y /**< */, | | int16_t y /**< */, | |
| uint32_t items_len /**< */, | | uint32_t items_len /**< */, | |
| const uint8_t *items /**< */); | | const uint8_t *items /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_poly_text_16_sizeof (const void *_buffer /**< */, | |
| | | uint32_t items_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11601 | | skipping to change at line 11732 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_poly_text_16 (xcb_connection_t *c /**< */, | | xcb_poly_text_16 (xcb_connection_t *c /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| int16_t x /**< */, | | int16_t x /**< */, | |
| int16_t y /**< */, | | int16_t y /**< */, | |
| uint32_t items_len /**< */, | | uint32_t items_len /**< */, | |
| const uint8_t *items /**< */); | | const uint8_t *items /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_image_text_8_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 11670 | | skipping to change at line 11804 | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_image_text_8 (xcb_connection_t *c /**< */, | | xcb_image_text_8 (xcb_connection_t *c /**< */, | |
| uint8_t string_len /**< */, | | uint8_t string_len /**< */, | |
| xcb_drawable_t drawable /**< */, | | xcb_drawable_t drawable /**< */, | |
| xcb_gcontext_t gc /**< */, | | xcb_gcontext_t gc /**< */, | |
| int16_t x /**< */, | | int16_t x /**< */, | |
| int16_t y /**< */, | | int16_t y /**< */, | |
| const char *string /**< */); | | const char *string /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_image_text_16_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 12000 | | skipping to change at line 12137 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param xcb_colormap_t cmap | | ** @param xcb_colormap_t cmap | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_uninstall_colormap (xcb_connection_t *c /**< */, | | xcb_uninstall_colormap (xcb_connection_t *c /**< */, | |
| xcb_colormap_t cmap /**< */); | | xcb_colormap_t cmap /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_list_installed_colormaps_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12208 | | skipping to change at line 12348 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_alloc_color_reply_t * | | ** @returns xcb_alloc_color_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_alloc_color_reply_t * | | xcb_alloc_color_reply_t * | |
| xcb_alloc_color_reply (xcb_connection_t *c /**< */, | | xcb_alloc_color_reply (xcb_connection_t *c /**< */, | |
| xcb_alloc_color_cookie_t cookie /**< */, | | xcb_alloc_color_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_alloc_named_color_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12296 | | skipping to change at line 12439 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_alloc_named_color_reply_t * | | ** @returns xcb_alloc_named_color_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_alloc_named_color_reply_t * | | xcb_alloc_named_color_reply_t * | |
| xcb_alloc_named_color_reply (xcb_connection_t *c /**< */, | | xcb_alloc_named_color_reply (xcb_connection_t *c /**< */, | |
| xcb_alloc_named_color_cookie_t cookie /**<
*/, | | xcb_alloc_named_color_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_alloc_color_cells_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12460 | | skipping to change at line 12606 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_alloc_color_cells_reply_t * | | ** @returns xcb_alloc_color_cells_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_alloc_color_cells_reply_t * | | xcb_alloc_color_cells_reply_t * | |
| xcb_alloc_color_cells_reply (xcb_connection_t *c /**< */, | | xcb_alloc_color_cells_reply (xcb_connection_t *c /**< */, | |
| xcb_alloc_color_cells_cookie_t cookie /**<
*/, | | xcb_alloc_color_cells_cookie_t cookie /**<
*/, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_alloc_color_planes_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12596 | | skipping to change at line 12745 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_alloc_color_planes_reply_t * | | ** @returns xcb_alloc_color_planes_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_alloc_color_planes_reply_t * | | xcb_alloc_color_planes_reply_t * | |
| xcb_alloc_color_planes_reply (xcb_connection_t *c /**< */, | | xcb_alloc_color_planes_reply (xcb_connection_t *c /**< */, | |
| xcb_alloc_color_planes_cookie_t cookie /**
< */, | | xcb_alloc_color_planes_cookie_t cookie /**
< */, | |
| xcb_generic_error_t **e /**< */)
; | | xcb_generic_error_t **e /**< */)
; | |
| | | | |
|
| | | int | |
| | | xcb_free_colors_sizeof (const void *_buffer /**< */, | |
| | | uint32_t pixels_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 12700 | | skipping to change at line 12853 | |
| ** xcb_generic_iterator_t xcb_coloritem_end | | ** xcb_generic_iterator_t xcb_coloritem_end | |
| ** | | ** | |
| ** @param xcb_coloritem_iterator_t i | | ** @param xcb_coloritem_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_coloritem_end (xcb_coloritem_iterator_t i /**< */); | | xcb_coloritem_end (xcb_coloritem_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_store_colors_sizeof (const void *_buffer /**< */, | |
| | | uint32_t items_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 12757 | | skipping to change at line 12914 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_store_colors (xcb_connection_t *c /**< */, | | xcb_store_colors (xcb_connection_t *c /**< */, | |
| xcb_colormap_t cmap /**< */, | | xcb_colormap_t cmap /**< */, | |
| uint32_t items_len /**< */, | | uint32_t items_len /**< */, | |
| const xcb_coloritem_t *items /**< */); | | const xcb_coloritem_t *items /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_store_named_color_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 12865 | | skipping to change at line 13025 | |
| ** xcb_generic_iterator_t xcb_rgb_end | | ** xcb_generic_iterator_t xcb_rgb_end | |
| ** | | ** | |
| ** @param xcb_rgb_iterator_t i | | ** @param xcb_rgb_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_rgb_end (xcb_rgb_iterator_t i /**< */); | | xcb_rgb_end (xcb_rgb_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_query_colors_sizeof (const void *_buffer /**< */, | |
| | | uint32_t pixels_len /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 12989 | | skipping to change at line 13153 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_query_colors_reply_t * | | ** @returns xcb_query_colors_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_query_colors_reply_t * | | xcb_query_colors_reply_t * | |
| xcb_query_colors_reply (xcb_connection_t *c /**< */, | | xcb_query_colors_reply (xcb_connection_t *c /**< */, | |
| xcb_query_colors_cookie_t cookie /**< */, | | xcb_query_colors_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_lookup_color_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 13469 | | skipping to change at line 13636 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_query_best_size_reply_t * | | ** @returns xcb_query_best_size_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_query_best_size_reply_t * | | xcb_query_best_size_reply_t * | |
| xcb_query_best_size_reply (xcb_connection_t *c /**< */, | | xcb_query_best_size_reply (xcb_connection_t *c /**< */, | |
| xcb_query_best_size_cookie_t cookie /**< */, | | xcb_query_best_size_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_query_extension_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 13553 | | skipping to change at line 13723 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_query_extension_reply_t * | | ** @returns xcb_query_extension_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_query_extension_reply_t * | | xcb_query_extension_reply_t * | |
| xcb_query_extension_reply (xcb_connection_t *c /**< */, | | xcb_query_extension_reply (xcb_connection_t *c /**< */, | |
| xcb_query_extension_cookie_t cookie /**< */, | | xcb_query_extension_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_list_extensions_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 13653 | | skipping to change at line 13826 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_list_extensions_reply_t * | | ** @returns xcb_list_extensions_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_list_extensions_reply_t * | | xcb_list_extensions_reply_t * | |
| xcb_list_extensions_reply (xcb_connection_t *c /**< */, | | xcb_list_extensions_reply (xcb_connection_t *c /**< */, | |
| xcb_list_extensions_cookie_t cookie /**< */, | | xcb_list_extensions_cookie_t cookie /**< */, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_change_keyboard_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 13714 | | skipping to change at line 13890 | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_change_keyboard_mapping (xcb_connection_t *c /**< */, | | xcb_change_keyboard_mapping (xcb_connection_t *c /**< */, | |
| uint8_t keycode_count /**< */, | | uint8_t keycode_count /**< */, | |
| xcb_keycode_t first_keycode /**< */, | | xcb_keycode_t first_keycode /**< */, | |
| uint8_t keysyms_per_keycode /**<
*/, | | uint8_t keysyms_per_keycode /**<
*/, | |
| const xcb_keysym_t *keysyms /**< */); | | const xcb_keysym_t *keysyms /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_get_keyboard_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 13834 | | skipping to change at line 14013 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_get_keyboard_mapping_reply_t * | | ** @returns xcb_get_keyboard_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_get_keyboard_mapping_reply_t * | | xcb_get_keyboard_mapping_reply_t * | |
| xcb_get_keyboard_mapping_reply (xcb_connection_t *c /**<
*/, | | xcb_get_keyboard_mapping_reply (xcb_connection_t *c /**<
*/, | |
| xcb_get_keyboard_mapping_cookie_t cookie
/**< */, | | xcb_get_keyboard_mapping_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_change_keyboard_control_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 14290 | | skipping to change at line 14472 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_get_screen_saver_reply_t * | | ** @returns xcb_get_screen_saver_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_get_screen_saver_reply_t * | | xcb_get_screen_saver_reply_t * | |
| xcb_get_screen_saver_reply (xcb_connection_t *c /**< */, | | xcb_get_screen_saver_reply (xcb_connection_t *c /**< */, | |
| xcb_get_screen_saver_cookie_t cookie /**< */
, | | xcb_get_screen_saver_cookie_t cookie /**< */
, | |
| xcb_generic_error_t **e /**< */); | | xcb_generic_error_t **e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_change_hosts_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_change_hosts_checked | | ** xcb_void_cookie_t xcb_change_hosts_checked | |
| ** | | ** | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint8_t mode | | ** @param uint8_t mode | |
| ** @param uint8_t family | | ** @param uint8_t family | |
| ** @param uint16_t address_len | | ** @param uint16_t address_len | |
|
| ** @param const char *address | | ** @param const uint8_t *address | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_change_hosts_checked (xcb_connection_t *c /**< */, | | xcb_change_hosts_checked (xcb_connection_t *c /**< */, | |
| uint8_t mode /**< */, | | uint8_t mode /**< */, | |
| uint8_t family /**< */, | | uint8_t family /**< */, | |
| uint16_t address_len /**< */, | | uint16_t address_len /**< */, | |
|
| const char *address /**< */); | | const uint8_t *address /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** xcb_void_cookie_t xcb_change_hosts | | ** xcb_void_cookie_t xcb_change_hosts | |
| ** | | ** | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint8_t mode | | ** @param uint8_t mode | |
| ** @param uint8_t family | | ** @param uint8_t family | |
| ** @param uint16_t address_len | | ** @param uint16_t address_len | |
|
| ** @param const char *address | | ** @param const uint8_t *address | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_change_hosts (xcb_connection_t *c /**< */, | | xcb_change_hosts (xcb_connection_t *c /**< */, | |
| uint8_t mode /**< */, | | uint8_t mode /**< */, | |
| uint8_t family /**< */, | | uint8_t family /**< */, | |
| uint16_t address_len /**< */, | | uint16_t address_len /**< */, | |
|
| const char *address /**< */); | | const uint8_t *address /**< */); | |
| | | | |
| | | int | |
| | | xcb_host_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** uint8_t * xcb_host_address | | ** uint8_t * xcb_host_address | |
| ** | | ** | |
| ** @param const xcb_host_t *R | | ** @param const xcb_host_t *R | |
| ** @returns uint8_t * | | ** @returns uint8_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| | | | |
| skipping to change at line 14430 | | skipping to change at line 14618 | |
| ** xcb_generic_iterator_t xcb_host_end | | ** xcb_generic_iterator_t xcb_host_end | |
| ** | | ** | |
| ** @param xcb_host_iterator_t i | | ** @param xcb_host_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_host_end (xcb_host_iterator_t i /**< */); | | xcb_host_end (xcb_host_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_list_hosts_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 14677 | | skipping to change at line 14868 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint32_t resource | | ** @param uint32_t resource | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_kill_client (xcb_connection_t *c /**< */, | | xcb_kill_client (xcb_connection_t *c /**< */, | |
| uint32_t resource /**< */); | | uint32_t resource /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_rotate_properties_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 14787 | | skipping to change at line 14981 | |
| ** @param xcb_connection_t *c | | ** @param xcb_connection_t *c | |
| ** @param uint8_t mode | | ** @param uint8_t mode | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_force_screen_saver (xcb_connection_t *c /**< */, | | xcb_force_screen_saver (xcb_connection_t *c /**< */, | |
| uint8_t mode /**< */); | | uint8_t mode /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_set_pointer_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 14871 | | skipping to change at line 15068 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_set_pointer_mapping_reply_t * | | ** @returns xcb_set_pointer_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_set_pointer_mapping_reply_t * | | xcb_set_pointer_mapping_reply_t * | |
| xcb_set_pointer_mapping_reply (xcb_connection_t *c /**< *
/, | | xcb_set_pointer_mapping_reply (xcb_connection_t *c /**< *
/, | |
| xcb_set_pointer_mapping_cookie_t cookie /
**< */, | | xcb_set_pointer_mapping_cookie_t cookie /
**< */, | |
| xcb_generic_error_t **e /**< *
/); | | xcb_generic_error_t **e /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_get_pointer_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 14983 | | skipping to change at line 15183 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_get_pointer_mapping_reply_t * | | ** @returns xcb_get_pointer_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_get_pointer_mapping_reply_t * | | xcb_get_pointer_mapping_reply_t * | |
| xcb_get_pointer_mapping_reply (xcb_connection_t *c /**< *
/, | | xcb_get_pointer_mapping_reply (xcb_connection_t *c /**< *
/, | |
| xcb_get_pointer_mapping_cookie_t cookie /
**< */, | | xcb_get_pointer_mapping_cookie_t cookie /
**< */, | |
| xcb_generic_error_t **e /**< *
/); | | xcb_generic_error_t **e /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_set_modifier_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 15067 | | skipping to change at line 15270 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_set_modifier_mapping_reply_t * | | ** @returns xcb_set_modifier_mapping_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_set_modifier_mapping_reply_t * | | xcb_set_modifier_mapping_reply_t * | |
| xcb_set_modifier_mapping_reply (xcb_connection_t *c /**<
*/, | | xcb_set_modifier_mapping_reply (xcb_connection_t *c /**<
*/, | |
| xcb_set_modifier_mapping_cookie_t cookie
/**< */, | | xcb_set_modifier_mapping_cookie_t cookie
/**< */, | |
| xcb_generic_error_t **e /**<
*/); | | xcb_generic_error_t **e /**<
*/); | |
| | | | |
|
| | | int | |
| | | xcb_get_modifier_mapping_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
End of changes. 73 change blocks. |
| 14 lines changed or deleted | | 220 lines changed or added | |
|
| xselinux.h | | xselinux.h | |
| | | | |
| skipping to change at line 729 | | skipping to change at line 729 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_query_version_reply_t * | | ** @returns xcb_selinux_query_version_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_query_version_reply_t * | | xcb_selinux_query_version_reply_t * | |
| xcb_selinux_query_version_reply (xcb_connection_t *c /*
*< */, | | xcb_selinux_query_version_reply (xcb_connection_t *c /*
*< */, | |
| xcb_selinux_query_version_cookie_t cooki
e /**< */, | | xcb_selinux_query_version_cookie_t cooki
e /**< */, | |
| xcb_generic_error_t **e /*
*< */); | | xcb_generic_error_t **e /*
*< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_set_device_create_context_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 782 | | skipping to change at line 785 | |
| ** @param const char *context | | ** @param const char *context | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_selinux_set_device_create_context (xcb_connection_t *c /**< */, | | xcb_selinux_set_device_create_context (xcb_connection_t *c /**< */, | |
| uint32_t context_len /**<
*/, | | uint32_t context_len /**<
*/, | |
| const char *context /**< */); | | const char *context /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_device_create_context_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 894 | | skipping to change at line 900 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_device_create_context_reply_t * | | ** @returns xcb_selinux_get_device_create_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_device_create_context_reply_t * | | xcb_selinux_get_device_create_context_reply_t * | |
| xcb_selinux_get_device_create_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_device_create_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_device_create_
context_cookie_t cookie /**< */, | | xcb_selinux_get_device_create_
context_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_set_device_context_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 951 | | skipping to change at line 960 | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_selinux_set_device_context (xcb_connection_t *c /**< */, | | xcb_selinux_set_device_context (xcb_connection_t *c /**< */, | |
| uint32_t device /**< */, | | uint32_t device /**< */, | |
| uint32_t context_len /**< */, | | uint32_t context_len /**< */, | |
| const char *context /**< */); | | const char *context /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_device_context_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1067 | | skipping to change at line 1079 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_device_context_reply_t * | | ** @returns xcb_selinux_get_device_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_device_context_reply_t * | | xcb_selinux_get_device_context_reply_t * | |
| xcb_selinux_get_device_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_device_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_device_context_cookie
_t cookie /**< */, | | xcb_selinux_get_device_context_cookie
_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_set_window_create_context_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 1120 | | skipping to change at line 1135 | |
| ** @param const char *context | | ** @param const char *context | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_selinux_set_window_create_context (xcb_connection_t *c /**< */, | | xcb_selinux_set_window_create_context (xcb_connection_t *c /**< */, | |
| uint32_t context_len /**<
*/, | | uint32_t context_len /**<
*/, | |
| const char *context /**< */); | | const char *context /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_window_create_context_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1232 | | skipping to change at line 1250 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_window_create_context_reply_t * | | ** @returns xcb_selinux_get_window_create_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_window_create_context_reply_t * | | xcb_selinux_get_window_create_context_reply_t * | |
| xcb_selinux_get_window_create_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_window_create_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_window_create_
context_cookie_t cookie /**< */, | | xcb_selinux_get_window_create_
context_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_window_context_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1348 | | skipping to change at line 1369 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_window_context_reply_t * | | ** @returns xcb_selinux_get_window_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_window_context_reply_t * | | xcb_selinux_get_window_context_reply_t * | |
| xcb_selinux_get_window_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_window_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_window_context_cookie
_t cookie /**< */, | | xcb_selinux_get_window_context_cookie
_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_list_item_sizeof (const void *_buffer /**< */); | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| ** | | ** | |
| ** char * xcb_selinux_list_item_object_context | | ** char * xcb_selinux_list_item_object_context | |
| ** | | ** | |
| ** @param const xcb_selinux_list_item_t *R | | ** @param const xcb_selinux_list_item_t *R | |
| ** @returns char * | | ** @returns char * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| char * | | char * | |
| | | | |
| skipping to change at line 1463 | | skipping to change at line 1487 | |
| ** xcb_generic_iterator_t xcb_selinux_list_item_end | | ** xcb_generic_iterator_t xcb_selinux_list_item_end | |
| ** | | ** | |
| ** @param xcb_selinux_list_item_iterator_t i | | ** @param xcb_selinux_list_item_iterator_t i | |
| ** @returns xcb_generic_iterator_t | | ** @returns xcb_generic_iterator_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_generic_iterator_t | | xcb_generic_iterator_t | |
| xcb_selinux_list_item_end (xcb_selinux_list_item_iterator_t i /**< */); | | xcb_selinux_list_item_end (xcb_selinux_list_item_iterator_t i /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_set_property_create_context_sizeof (const void *_buffer /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 1516 | | skipping to change at line 1543 | |
| ** @param const char *context | | ** @param const char *context | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_selinux_set_property_create_context (xcb_connection_t *c /**< */, | | xcb_selinux_set_property_create_context (xcb_connection_t *c /**< */, | |
| uint32_t context_len /**
< */, | | uint32_t context_len /**
< */, | |
| const char *context /**< */
); | | const char *context /**< */
); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_property_create_context_sizeof (const void *_buffer /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1628 | | skipping to change at line 1658 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_property_create_context_reply_t * | | ** @returns xcb_selinux_get_property_create_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_property_create_context_reply_t * | | xcb_selinux_get_property_create_context_reply_t * | |
| xcb_selinux_get_property_create_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_property_create_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_property_cre
ate_context_cookie_t cookie /**< */, | | xcb_selinux_get_property_cre
ate_context_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_set_property_use_context_sizeof (const void *_buffer /**< */) | |
| | | ; | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 1681 | | skipping to change at line 1714 | |
| ** @param const char *context | | ** @param const char *context | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_selinux_set_property_use_context (xcb_connection_t *c /**< */, | | xcb_selinux_set_property_use_context (xcb_connection_t *c /**< */, | |
| uint32_t context_len /**< *
/, | | uint32_t context_len /**< *
/, | |
| const char *context /**< */); | | const char *context /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_property_use_context_sizeof (const void *_buffer /**< */) | |
| | | ; | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1793 | | skipping to change at line 1829 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_property_use_context_reply_t * | | ** @returns xcb_selinux_get_property_use_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_property_use_context_reply_t * | | xcb_selinux_get_property_use_context_reply_t * | |
| xcb_selinux_get_property_use_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_property_use_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_property_use_co
ntext_cookie_t cookie /**< */, | | xcb_selinux_get_property_use_co
ntext_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_property_context_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 1913 | | skipping to change at line 1952 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_property_context_reply_t * | | ** @returns xcb_selinux_get_property_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_property_context_reply_t * | | xcb_selinux_get_property_context_reply_t * | |
| xcb_selinux_get_property_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_property_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_property_context_co
okie_t cookie /**< */, | | xcb_selinux_get_property_context_co
okie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_property_data_context_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2033 | | skipping to change at line 2075 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_property_data_context_reply_t * | | ** @returns xcb_selinux_get_property_data_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_property_data_context_reply_t * | | xcb_selinux_get_property_data_context_reply_t * | |
| xcb_selinux_get_property_data_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_property_data_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_property_data_
context_cookie_t cookie /**< */, | | xcb_selinux_get_property_data_
context_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_list_properties_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2137 | | skipping to change at line 2182 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_list_properties_reply_t * | | ** @returns xcb_selinux_list_properties_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_list_properties_reply_t * | | xcb_selinux_list_properties_reply_t * | |
| xcb_selinux_list_properties_reply (xcb_connection_t *c
/**< */, | | xcb_selinux_list_properties_reply (xcb_connection_t *c
/**< */, | |
| xcb_selinux_list_properties_cookie_t c
ookie /**< */, | | xcb_selinux_list_properties_cookie_t c
ookie /**< */, | |
| xcb_generic_error_t **e
/**< */); | | xcb_generic_error_t **e
/**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_set_selection_create_context_sizeof (const void *_buffer /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2190 | | skipping to change at line 2238 | |
| ** @param const char *context | | ** @param const char *context | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_selinux_set_selection_create_context (xcb_connection_t *c /**< */, | | xcb_selinux_set_selection_create_context (xcb_connection_t *c /**< */, | |
| uint32_t context_len /*
*< */, | | uint32_t context_len /*
*< */, | |
| const char *context /**< *
/); | | const char *context /**< *
/); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_selection_create_context_sizeof (const void *_buffer /**< | |
| | | */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2302 | | skipping to change at line 2353 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_selection_create_context_reply_t * | | ** @returns xcb_selinux_get_selection_create_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_selection_create_context_reply_t * | | xcb_selinux_get_selection_create_context_reply_t * | |
| xcb_selinux_get_selection_create_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_selection_create_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_selection_c
reate_context_cookie_t cookie /**< */, | | xcb_selinux_get_selection_c
reate_context_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_set_selection_use_context_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| * This form can be used only if the request will not cause | | * This form can be used only if the request will not cause | |
| * a reply to be generated. Any returned error will be | | * a reply to be generated. Any returned error will be | |
| * saved for handling by xcb_request_check(). | | * saved for handling by xcb_request_check(). | |
| | | | |
| skipping to change at line 2355 | | skipping to change at line 2409 | |
| ** @param const char *context | | ** @param const char *context | |
| ** @returns xcb_void_cookie_t | | ** @returns xcb_void_cookie_t | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_void_cookie_t | | xcb_void_cookie_t | |
| xcb_selinux_set_selection_use_context (xcb_connection_t *c /**< */, | | xcb_selinux_set_selection_use_context (xcb_connection_t *c /**< */, | |
| uint32_t context_len /**<
*/, | | uint32_t context_len /**<
*/, | |
| const char *context /**< */); | | const char *context /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_selection_use_context_sizeof (const void *_buffer /**< */ | |
| | | ); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2467 | | skipping to change at line 2524 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_selection_use_context_reply_t * | | ** @returns xcb_selinux_get_selection_use_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_selection_use_context_reply_t * | | xcb_selinux_get_selection_use_context_reply_t * | |
| xcb_selinux_get_selection_use_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_selection_use_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_selection_use_
context_cookie_t cookie /**< */, | | xcb_selinux_get_selection_use_
context_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_selection_context_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2583 | | skipping to change at line 2643 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_selection_context_reply_t * | | ** @returns xcb_selinux_get_selection_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_selection_context_reply_t * | | xcb_selinux_get_selection_context_reply_t * | |
| xcb_selinux_get_selection_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_selection_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_selection_context_
cookie_t cookie /**< */, | | xcb_selinux_get_selection_context_
cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_selection_data_context_sizeof (const void *_buffer /**< * | |
| | | /); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2699 | | skipping to change at line 2762 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_get_selection_data_context_reply_t * | | ** @returns xcb_selinux_get_selection_data_context_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_get_selection_data_context_reply_t * | | xcb_selinux_get_selection_data_context_reply_t * | |
| xcb_selinux_get_selection_data_context_reply (xcb_connection_t
*c /**< */, | | xcb_selinux_get_selection_data_context_reply (xcb_connection_t
*c /**< */, | |
| xcb_selinux_get_selection_dat
a_context_cookie_t cookie /**< */, | | xcb_selinux_get_selection_dat
a_context_cookie_t cookie /**< */, | |
| xcb_generic_error_t
**e /**< */); | | xcb_generic_error_t
**e /**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_list_selections_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
| skipping to change at line 2799 | | skipping to change at line 2865 | |
| ** @param xcb_generic_error_t **e | | ** @param xcb_generic_error_t **e | |
| ** @returns xcb_selinux_list_selections_reply_t * | | ** @returns xcb_selinux_list_selections_reply_t * | |
| ** | | ** | |
| **************************************************************************
***/ | | **************************************************************************
***/ | |
| | | | |
| xcb_selinux_list_selections_reply_t * | | xcb_selinux_list_selections_reply_t * | |
| xcb_selinux_list_selections_reply (xcb_connection_t *c
/**< */, | | xcb_selinux_list_selections_reply (xcb_connection_t *c
/**< */, | |
| xcb_selinux_list_selections_cookie_t c
ookie /**< */, | | xcb_selinux_list_selections_cookie_t c
ookie /**< */, | |
| xcb_generic_error_t **e
/**< */); | | xcb_generic_error_t **e
/**< */); | |
| | | | |
|
| | | int | |
| | | xcb_selinux_get_client_context_sizeof (const void *_buffer /**< */); | |
| | | | |
| /** | | /** | |
| * Delivers a request to the X server | | * Delivers a request to the X server | |
| * @param c The connection | | * @param c The connection | |
| * @return A cookie | | * @return A cookie | |
| * | | * | |
| * Delivers a request to the X server. | | * Delivers a request to the X server. | |
| * | | * | |
| */ | | */ | |
| | | | |
| /**************************************************************************
*** | | /**************************************************************************
*** | |
| | | | |
End of changes. 23 change blocks. |
| 0 lines changed or deleted | | 83 lines changed or added | |
|