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

NAME

6       xcb_free_pixmap - Destroys a pixmap
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Request function
12       xcb_void_cookie_t xcb_free_pixmap(xcb_connection_t *conn,
13              xcb_pixmap_t pixmap);
14

REQUEST ARGUMENTS

16       conn      The XCB connection to X11.
17
18       pixmap    The pixmap to destroy.
19

DESCRIPTION

21       Deletes the association between the pixmap ID and the pixmap. The
22       pixmap storage will be freed when there are no more references to it.
23

RETURN VALUE

25       Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the
26       event loop.
27
28       If you want to handle errors directly with xcb_request_check instead,
29       use xcb_free_pixmap_checked. See xcb-requests(3) for details.
30

ERRORS

32       xcb_pixmap_error_t
33                 The specified pixmap does not exist.
34

SEE ALSO

36       xcb-requests(3)
37

AUTHOR

39       Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
40       rections and improvements.
41
42
43
44X Version 11                      libxcb 1.13               xcb_free_pixmap(3)
Impressum