1xcb_dri2_get_msc(3) XCB Requests xcb_dri2_get_msc(3)
2
3
4
6 xcb_dri2_get_msc -
7
9 #include <xcb/dri2.h>
10
11 Request function
12 xcb_dri2_get_msc_cookie_t xcb_dri2_get_msc(xcb_connection_t *conn,
13 xcb_drawable_t drawable);
14
15 Reply datastructure
16 typedef struct xcb_dri2_get_msc_reply_t {
17 uint8_t response_type;
18 uint8_t pad0;
19 uint16_t sequence;
20 uint32_t length;
21 uint32_t ust_hi;
22 uint32_t ust_lo;
23 uint32_t msc_hi;
24 uint32_t msc_lo;
25 uint32_t sbc_hi;
26 uint32_t sbc_lo;
27 } xcb_dri2_get_msc_reply_t;
28
29 Reply function
30 xcb_dri2_get_msc_reply_t
31 *xcb_dri2_get_msc_reply(xcb_connection_t *conn,
32 xcb_dri2_get_msc_cookie_t cookie, xcb_generic_error_t **e);
33
35 conn The XCB connection to X11.
36
37 drawable TODO: NOT YET DOCUMENTED.
38
40 response_type
41 The type of this reply, in this case XCB_DRI2_GET_MSC. This
42 field is also present in the xcb_generic_reply_t and can be
43 used to tell replies apart from each other.
44
45 sequence The sequence number of the last request processed by the X11
46 server.
47
48 length The length of the reply, in words (a word is 4 bytes).
49
50 ust_hi TODO: NOT YET DOCUMENTED.
51
52 ust_lo TODO: NOT YET DOCUMENTED.
53
54 msc_hi TODO: NOT YET DOCUMENTED.
55
56 msc_lo TODO: NOT YET DOCUMENTED.
57
58 sbc_hi TODO: NOT YET DOCUMENTED.
59
60 sbc_lo TODO: NOT YET DOCUMENTED.
61
64 Returns an xcb_dri2_get_msc_cookie_t. Errors have to be handled when
65 calling the reply function xcb_dri2_get_msc_reply.
66
67 If you want to handle errors in the event loop instead, use
68 xcb_dri2_get_msc_unchecked. See xcb-requests(3) for details.
69
71 This request does never generate any errors.
72
75 Generated from dri2.xml. Contact xcb@lists.freedesktop.org for correcā
76 tions and improvements.
77
78
79
80X Version 11 libxcb 1.13 xcb_dri2_get_msc(3)