aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ecore/src/lib/ecore_x/xcb/ecore_xcb_shape.c
blob: 913f1992b9e33510c02cbcfad8297b0274af81b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "ecore_xcb_private.h"
#ifdef ECORE_XCB_SHAPE
# include <xcb/shape.h>
#endif

/* external variables */
int _ecore_xcb_event_shape = -1;

void
_ecore_xcb_shape_init(void)
{
   LOGFN(__FILE__, __LINE__, __FUNCTION__);

#ifdef ECORE_XCB_SHAPE
   xcb_prefetch_extension_data(_ecore_xcb_conn, &xcb_shape_id);
#endif
}

void
_ecore_xcb_shape_finalize(void)
{
#ifdef ECORE_XCB_SHAPE
   const xcb_query_extension_reply_t *ext_reply;
#endif

   LOGFN(__FILE__, __LINE__, __FUNCTION__);

#ifdef ECORE_XCB_SHAPE
   ext_reply = xcb_get_extension_data(_ecore_xcb_conn, &xcb_shape_id);
   if ((ext_reply) && (ext_reply->present))
     {
        xcb_shape_query_version_cookie_t cookie;
        xcb_shape_query_version_reply_t *reply;
        Eina_Bool _shape_avail;

        _shape_avail = EINA_FALSE;
        cookie = xcb_shape_query_version_unchecked(_ecore_xcb_conn);
        reply = xcb_shape_query_version_reply(_ecore_xcb_conn, cookie, NULL);
        if (reply)
          {
             _shape_avail = EINA_TRUE;
             free(reply);
          }

        if (_shape_avail)
          _ecore_xcb_event_shape = ext_reply->first_event;
     }
#endif
}