1xcb_glx_get_materialfv(3)        XCB Requests        xcb_glx_get_materialfv(3)
2
3
4

NAME

6       xcb_glx_get_materialfv -
7

SYNOPSIS

9       #include <xcb/glx.h>
10
11   Request function
12       xcb_glx_get_materialfv_cookie_t
13              xcb_glx_get_materialfv(xcb_connection_t *conn,
14              xcb_glx_context_tag_t context_tag, uint32_t face,
15              uint32_t pname);
16
17   Reply datastructure
18       typedef struct xcb_glx_get_materialfv_reply_t {
19           uint8_t           response_type;
20           uint8_t           pad0;
21           uint16_t          sequence;
22           uint32_t          length;
23           uint8_t           pad1[4];
24           uint32_t          n;
25           xcb_glx_float32_t datum;
26           uint8_t           pad2[12];
27       } xcb_glx_get_materialfv_reply_t;
28
29   Reply function
30       xcb_glx_get_materialfv_reply_t
31              *xcb_glx_get_materialfv_reply(xcb_connection_t *conn,
32              xcb_glx_get_materialfv_cookie_t cookie,
33              xcb_generic_error_t **e);
34
35   Reply accessors
36       xcb_glx_float32_t *xcb_glx_get_materialfv_data(const
37              xcb_glx_get_materialfv_request_t *reply);
38
39       int xcb_glx_get_materialfv_data_length(const
40              xcb_glx_get_materialfv_reply_t *reply);
41
42       xcb_generic_iterator_t xcb_glx_get_materialfv_data_end(const
43              xcb_glx_get_materialfv_reply_t *reply);
44

REQUEST ARGUMENTS

46       conn      The XCB connection to X11.
47
48       context_tag
49                 TODO: NOT YET DOCUMENTED.
50
51       face      TODO: NOT YET DOCUMENTED.
52
53       pname     TODO: NOT YET DOCUMENTED.
54

REPLY FIELDS

56       response_type
57                 The type of this reply, in this case XCB_GLX_GET_MATERIALFV.
58                 This field is also present in the xcb_generic_reply_t and can
59                 be used to tell replies apart from each other.
60
61       sequence  The sequence number of the last request processed by the X11
62                 server.
63
64       length    The length of the reply, in words (a word is 4 bytes).
65
66       n         TODO: NOT YET DOCUMENTED.
67
68       datum     TODO: NOT YET DOCUMENTED.
69

DESCRIPTION

RETURN VALUE

72       Returns an xcb_glx_get_materialfv_cookie_t. Errors have to be handled
73       when calling the reply function xcb_glx_get_materialfv_reply.
74
75       If you want to handle errors in the event loop instead, use
76       xcb_glx_get_materialfv_unchecked. See xcb-requests(3) for details.
77

ERRORS

79       This request does never generate any errors.
80

SEE ALSO

AUTHOR

83       Generated from glx.xml. Contact xcb@lists.freedesktop.org for correcā€
84       tions and improvements.
85
86
87
88X Version 11                      libxcb 1.13        xcb_glx_get_materialfv(3)
Impressum