summaryrefslogtreecommitdiff
path: root/src/lib/ecore_wl2/ecore_wl2_surface.c
blob: b2029d11f64d7ecabc93a1bd92d0549b78a77983 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include "ecore_wl2_private.h"

#include <sys/types.h>
#include <sys/stat.h>

static Eina_List *_smanagers = NULL;
static int _smanager_count = 0;

EAPI void
ecore_wl2_surface_destroy(Ecore_Wl2_Surface *surface)
{
   EINA_SAFETY_ON_NULL_RETURN(surface);

   ecore_event_handler_del(surface->offscreen_handler);
   surface->funcs->destroy(surface, surface->private_data);
   surface->wl2_win->wl2_surface = NULL;
   surface->wl2_win = NULL;

   free(surface);
   /* We took a reference to ecore_wl2 in surface create to prevent
    * modules unloading with surfaces in flight.  Release that now.
    */
   ecore_wl2_shutdown();
}

EAPI void
ecore_wl2_surface_reconfigure(Ecore_Wl2_Surface *surface, int w, int h, uint32_t flags, Eina_Bool alpha)
{
   EINA_SAFETY_ON_NULL_RETURN(surface);

   surface->funcs->reconfigure(surface, surface->private_data, w, h, flags, alpha);
   surface->w = w;
   surface->h = h;
   surface->alpha = alpha;
}

EAPI void *
ecore_wl2_surface_data_get(Ecore_Wl2_Surface *surface, int *w, int *h)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(surface, NULL);

   return surface->funcs->data_get(surface, surface->private_data, w, h);
}

EAPI int
ecore_wl2_surface_assign(Ecore_Wl2_Surface *surface)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(surface, 0);

   return surface->funcs->assign(surface, surface->private_data);
}

EAPI void
ecore_wl2_surface_post(Ecore_Wl2_Surface *surface, Eina_Rectangle *rects, unsigned int count)
{
   EINA_SAFETY_ON_NULL_RETURN(surface);

   surface->funcs->post(surface, surface->private_data, rects, count);
}

EAPI void
ecore_wl2_surface_flush(Ecore_Wl2_Surface *surface, Eina_Bool purge)
{
   EINA_SAFETY_ON_NULL_RETURN(surface);

   surface->funcs->flush(surface, surface->private_data, purge);
}

static Eina_Bool
_ecore_wl2_surface_cb_offscreen(void *data, int type EINA_UNUSED, void *event)
{
   Ecore_Wl2_Event_Window_Offscreen *ev = event;
   Ecore_Wl2_Surface *surf = data;

   if (surf->wl2_win == ev->win)
      ecore_wl2_surface_flush(surf, EINA_FALSE);

   return ECORE_CALLBACK_RENEW;
}

EAPI Ecore_Wl2_Surface *
ecore_wl2_surface_create(Ecore_Wl2_Window *win, Eina_Bool alpha)
{
   Ecore_Wl2_Surface *out;
   Eina_List *l;
   Ecore_Wl2_Surface_Interface *intf;

   EINA_SAFETY_ON_NULL_RETURN_VAL(win, NULL);
   EINA_SAFETY_ON_NULL_RETURN_VAL(_smanagers, NULL);

   if (win->wl2_surface) return win->wl2_surface;

   out = calloc(1, sizeof(*out));
   if (!out) return NULL;

   out->wl2_win = win;
   out->alpha = alpha;
   out->w = 0;
   out->h = 0;

   EINA_LIST_FOREACH(_smanagers, l, intf)
     {
        out->private_data = intf->setup(win);
        if (out->private_data)
          {
             out->funcs = intf;
             win->wl2_surface = out;
             out->offscreen_handler =
               ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_OFFSCREEN,
                                       _ecore_wl2_surface_cb_offscreen,
                                       out);
             /* Since we have loadable modules, we need to make sure this
              * surface keeps ecore_wl2 from de-initting and dlclose()ing
              * things until after it's destroyed
              */
             ecore_wl2_init();
             return out;
          }
     }

   free(out);
   return NULL;
}

EAPI Ecore_Wl2_Buffer *
ecore_wl2_surface_buffer_create(Ecore_Wl2_Surface *surface)
{
   Ecore_Wl2_Display *ewd;

   EINA_SAFETY_ON_NULL_RETURN_VAL(surface, NULL);

   ewd = ecore_wl2_window_display_get(surface->wl2_win);
   EINA_SAFETY_ON_NULL_RETURN_VAL(ewd, NULL);

   return ecore_wl2_buffer_create(ewd, surface->w, surface->h, surface->alpha);
}

EAPI int
ecore_wl2_surface_manager_add(Ecore_Wl2_Surface_Interface *intf)
{
   if (intf->version < ECORE_WL2_SURFACE_INTERFACE_VERSION)
     return 0;

   _smanagers = eina_list_prepend(_smanagers, intf);
   intf->id = ++_smanager_count;
   return intf->id;
}

EAPI void
ecore_wl2_surface_manager_del(Ecore_Wl2_Surface_Interface *intf)
{
   _smanagers = eina_list_remove(_smanagers, intf);
}

EAPI Ecore_Wl2_Window *
ecore_wl2_surface_window_get(Ecore_Wl2_Surface *surface)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(surface, NULL);

   return surface->wl2_win;
}

EAPI Eina_Bool
ecore_wl2_surface_alpha_get(Ecore_Wl2_Surface *surface)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(surface, EINA_FALSE);

   return surface->alpha;
}