1xcb_xf86dri_create_context(3) XCB Requests xcb_xf86dri_create_context(3)
2
3
4
6 xcb_xf86dri_create_context -
7
9 #include <xcb/xf86dri.h>
10
11 Request function
12 xcb_xf86dri_create_context_cookie_t
13 xcb_xf86dri_create_context(xcb_connection_t *conn,
14 uint32_t screen, uint32_t visual, uint32_t context);
15
16 Reply datastructure
17 typedef struct xcb_xf86dri_create_context_reply_t {
18 uint8_t response_type;
19 uint8_t pad0;
20 uint16_t sequence;
21 uint32_t length;
22 uint32_t hw_context;
23 } xcb_xf86dri_create_context_reply_t;
24
25 Reply function
26 xcb_xf86dri_create_context_reply_t
27 *xcb_xf86dri_create_context_reply(xcb_connection_t *conn,
28 xcb_xf86dri_create_context_cookie_t cookie,
29 xcb_generic_error_t **e);
30
32 conn The XCB connection to X11.
33
34 screen TODO: NOT YET DOCUMENTED.
35
36 visual TODO: NOT YET DOCUMENTED.
37
38 context TODO: NOT YET DOCUMENTED.
39
41 response_type
42 The type of this reply, in this case XCB_XF86DRI_CREATE_CON‐
43 TEXT. This field is also present in the xcb_generic_reply_t
44 and can be used to tell replies apart from each other.
45
46 sequence The sequence number of the last request processed by the X11
47 server.
48
49 length The length of the reply, in words (a word is 4 bytes).
50
51 hw_context
52 TODO: NOT YET DOCUMENTED.
53
56 Returns an xcb_xf86dri_create_context_cookie_t. Errors have to be han‐
57 dled when calling the reply function xcb_xf86dri_create_context_reply.
58
59 If you want to handle errors in the event loop instead, use
60 xcb_xf86dri_create_context_unchecked. See xcb-requests(3) for details.
61
63 This request does never generate any errors.
64
67 Generated from xf86dri.xml. Contact xcb@lists.freedesktop.org for cor‐
68 rections and improvements.
69
70
71
72X Version 11 libxcb 1.12 xcb_xf86dri_create_context(3)